Skip to content

Commit bb24e15

Browse files
Fix Ruff rule F811
1 parent 0c8cd75 commit bb24e15

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Diff for: tfx/dsl/placeholder/placeholder_base.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,8 @@
4545
# where ComponentSpecIntf is an interface that gives access to the few things
4646
# that Placeholder::encode() needs from the spec. TODO(pke) Implement.
4747
# TODO(b/191610358): Reduce the number of circular type-dependencies.
48-
types = Any # To resolve circular dependency caused by type annotations.
48+
# To resolve circular dependency caused by type annotations.
49+
types = Any # noqa: F811
4950

5051
# TODO(b/190409099): Support RuntimeParameter.
5152
ValueType = Union[int, float, str, bool]

0 commit comments

Comments
 (0)