Skip to content

Commit a1c5167

Browse files
authored
Enable Ruff's default rules (#342)
Signed-off-by: Fabrice Normandin <[email protected]>
1 parent ba5139e commit a1c5167

File tree

3 files changed

+11
-13
lines changed

3 files changed

+11
-13
lines changed

pyproject.toml

+1-3
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,7 @@ testpaths = ["test", "simple_parsing"]
3030
norecursedirs = ["examples", "docs"]
3131

3232
[tool.ruff.lint]
33-
select = ["I", "UP"]
34-
# TODO: Fix the imports in __init__.py files and enable these:
35-
# select = ["E4", "E7", "E9", "I", "UP"]
33+
select = ["E4", "E7", "E9", "I", "UP"]
3634

3735
[tool.docformatter]
3836
in-place = true

test/test_decoding.py

+8-8
Original file line numberDiff line numberDiff line change
@@ -24,14 +24,14 @@ def test_encode_something(simple_attribute):
2424

2525
@dataclass
2626
class SomeClass(Serializable):
27-
d: dict[str, some_type] = dict_field()
28-
l: list[tuple[some_type, some_type]] = list_field()
29-
t: dict[str, Optional[some_type]] = dict_field()
27+
d: dict[str, some_type] = dict_field() # pyright: ignore[reportInvalidTypeForm]
28+
some_list: list[tuple[some_type, some_type]] = list_field() # pyright: ignore[reportInvalidTypeForm]
29+
t: dict[str, Optional[some_type]] = dict_field() # pyright: ignore[reportInvalidTypeForm]
3030
# w: Dict[str, Union[some_type, int, str, None, str, None]] = dict_field()
3131

3232
b = SomeClass()
3333
b.d.update({"hey": expected_value})
34-
b.l.append((expected_value, expected_value))
34+
b.some_list.append((expected_value, expected_value))
3535
b.t.update({"hey": None, "hey2": expected_value})
3636
# b.w.update({
3737
# "hey": None,
@@ -85,14 +85,14 @@ class Container(Serializable, Generic[ItemT]):
8585

8686
@dataclass
8787
class SomeClass(Serializable):
88-
d: dict[str, some_type] = dict_field()
89-
l: list[tuple[some_type, some_type]] = list_field()
90-
t: dict[str, Optional[some_type]] = dict_field()
88+
d: dict[str, some_type] = dict_field() # pyright: ignore[reportInvalidTypeForm]
89+
some_list: list[tuple[some_type, some_type]] = list_field() # pyright: ignore[reportInvalidTypeForm]
90+
t: dict[str, Optional[some_type]] = dict_field() # pyright: ignore[reportInvalidTypeForm]
9191
# w: Dict[str, Union[some_type, int, str, None, str, None]] = dict_field()
9292

9393
b = SomeClass()
9494
b.d.update({"hey": expected_value})
95-
b.l.append((expected_value, expected_value))
95+
b.some_list.append((expected_value, expected_value))
9696
b.t.update({"hey": None, "hey2": expected_value})
9797
# b.w.update({
9898
# "hey": None,

test/test_union.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ class Foo(TestSetup):
1616
assert foo.x == "bob"
1717

1818
foo = Foo.setup("--x 2")
19-
assert foo.x == 2 and type(foo.x) is int
19+
assert foo.x == 2 and isinstance(foo.x, int)
2020

2121

2222
def test_union_type_raises_error():
@@ -31,4 +31,4 @@ class Foo2(TestSetup):
3131
foo = Foo2.setup("--x bob")
3232

3333
foo = Foo2.setup("--x 2")
34-
assert foo.x == 2 and type(foo.x) is int
34+
assert foo.x == 2 and isinstance(foo.x, int)

0 commit comments

Comments
 (0)