Skip to content

Commit 6042033

Browse files
committed
chore: remove unused NOTE comment
1 parent ab690d0 commit 6042033

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

test/test_mypy.py

-4
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@ def test_plugin_no_issue(self):
1616
1717
1818
class MyTask(gokart.TaskOnKart):
19-
# NOTE: mypy shows attr-defined error for the following lines, so we need to ignore it.
2019
foo: int = luigi.IntParameter() # type: ignore
2120
bar: str = luigi.Parameter() # type: ignore
2221
baz: bool = gokart.ExplicitBoolParameter()
@@ -44,7 +43,6 @@ def test_plugin_invalid_arg(self):
4443
4544
4645
class MyTask(gokart.TaskOnKart):
47-
# NOTE: mypy shows attr-defined error for the following lines, so we need to ignore it.
4846
foo: int = luigi.IntParameter() # type: ignore
4947
bar: str = luigi.Parameter() # type: ignore
5048
baz: bool = gokart.ExplicitBoolParameter()
@@ -79,7 +77,6 @@ class MyEnum(enum.Enum):
7977
FOO = enum.auto()
8078
8179
class MyTask(gokart.TaskOnKart):
82-
# NOTE: mypy shows attr-defined error for the following lines, so we need to ignore it.
8380
foo = luigi.IntParameter()
8481
bar = luigi.DateParameter()
8582
baz = gokart.TaskInstanceParameter()
@@ -110,7 +107,6 @@ def test_parameter_has_default_type_no_issue_pattern(self):
110107
import gokart
111108
112109
class MyTask(gokart.TaskOnKart):
113-
# NOTE: mypy shows attr-defined error for the following lines, so we need to ignore it.
114110
foo = luigi.IntParameter()
115111
bar = luigi.DateParameter()
116112
baz = gokart.TaskInstanceParameter()

0 commit comments

Comments
 (0)