Skip to content

Commit 8662f3c

Browse files
committed
make mypy happy
1 parent 0e931e5 commit 8662f3c

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

fixlib/fixlib/baseresources.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1098,7 +1098,7 @@ class BaseBucket(BaseResource):
10981098

10991099
@unique
11001100
class QueueType(Enum):
1101-
kind: ClassVar[str] = "queue_type"
1101+
kind: ClassVar[str] = "queue_type" # type: ignore
11021102
STANDARD = "standard"
11031103
FIFO = "fifo"
11041104

fixworker/test/test_collect.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ class ExampleAccount(BaseAccount):
2323
kind: ClassVar[str] = "example_account"
2424

2525
def delete(self, graph: Graph) -> bool:
26-
return NotImplemented
26+
return False
2727

2828

2929
class ExampleCollectorPlugin(BaseCollectorPlugin):

fixworker/test/test_fixcore.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ class ExampleAccount(BaseAccount):
1717
kind: ClassVar[str] = "example_account"
1818

1919
def delete(self, graph: Graph) -> bool:
20-
return NotImplemented
20+
return False
2121

2222

2323
class ExampleCollectorPlugin(BaseCollectorPlugin):

requirements-all.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ networkx==3.4.2
9999
oauth2client==4.1.3
100100
oauthlib==3.2.2
101101
onelogin==2.0.4
102-
orderly-set==5.2.3
102+
orderly-set==5.2.2
103103
orjson==3.10.15
104104
packaging==24.2
105105
parsy==2.1

requirements-extra.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ networkx==3.4.2
8484
oauth2client==4.1.3
8585
oauthlib==3.2.2
8686
onelogin==2.0.4
87-
orderly-set==5.2.3
87+
orderly-set==5.2.2
8888
orjson==3.10.15
8989
packaging==24.2
9090
parsy==2.1

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ networkx==3.4.2
7878
oauth2client==4.1.3
7979
oauthlib==3.2.2
8080
onelogin==2.0.4
81-
orderly-set==5.2.3
81+
orderly-set==5.2.2
8282
orjson==3.10.15
8383
packaging==24.2
8484
parsy==2.1

0 commit comments

Comments
 (0)