Skip to content

Commit

Permalink
Fix filtering by tag for pipeline runs (#3097)
Browse files Browse the repository at this point in the history
* Fix filtering by tag for pipeline runs

* Formatting
  • Loading branch information
schustmi authored Oct 18, 2024
1 parent f4503f9 commit 3fd4bf7
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/zenml/models/v2/core/pipeline_run.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@
from zenml.constants import STR_FIELD_MAX_LENGTH
from zenml.enums import ExecutionStatus
from zenml.models.v2.base.scoped import (
WorkspaceScopedFilter,
WorkspaceScopedRequest,
WorkspaceScopedResponse,
WorkspaceScopedResponseBody,
Expand Down Expand Up @@ -575,7 +574,7 @@ class PipelineRunFilter(WorkspaceScopedTaggableFilter):
"""Model to enable advanced filtering of all Workspaces."""

FILTER_EXCLUDE_FIELDS: ClassVar[List[str]] = [
*WorkspaceScopedFilter.FILTER_EXCLUDE_FIELDS,
*WorkspaceScopedTaggableFilter.FILTER_EXCLUDE_FIELDS,
"unlisted",
"code_repository_id",
"build_id",
Expand Down

0 comments on commit 3fd4bf7

Please sign in to comment.