Skip to content

Commit 77d72d2

Browse files
Additional cleanups
1 parent 1d066c5 commit 77d72d2

File tree

4 files changed

+0
-12
lines changed

4 files changed

+0
-12
lines changed

tests/functional/i/import_error.rc

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,3 @@ enable=multiple-imports
44

55
[TYPECHECK]
66
ignored-modules=external_module,fake_module.submodule,foo,bar,*_ignored
7-
8-
[testoptions]
9-
# TODO: PY3.9: This does pass on PyPy 3.9
10-
except_implementations=PyPy

tests/functional/i/invalid/invalid_field_call.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,15 +34,13 @@ class DC:
3434
mc.field()
3535
a: float = field(init=False)
3636
b: float = dc.field(init=False)
37-
# TODO(remove py3.9 min) pylint: disable-next=unsubscriptable-object
3837
c: list[float] = [field(), field()] # [invalid-field-call, invalid-field-call]
3938

4039
@dc.dataclass
4140
class IsAlsoDC:
4241
field() # [invalid-field-call]
4342
a: float = field(init=False)
4443
b: float = dc.field(init=False)
45-
# TODO(remove py3.9 min) pylint: disable-next=unsubscriptable-object
4644
c: list[float] = [field(), field()] # [invalid-field-call, invalid-field-call]
4745

4846
@dc.dataclass(frozen=True)

tests/functional/n/non_ascii_name/non_ascii_name_function_argument.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
11
"""
22
non ascii variable defined in a function
3-
4-
This test is 3.9+ and not using 'min_pyver_end_position'
5-
as the starting column is also incorrect on < 3.9
63
"""
74

85

tests/functional/n/non_ascii_name/non_ascii_name_kwargs.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
11
"""
22
Defining non ASCII variables in a function call
3-
4-
This test is 3.9+ and not using 'min_pyver_end_position'
5-
as the starting column is also incorrect on < 3.9
63
"""
74

85

0 commit comments

Comments
 (0)