Skip to content

Commit 4c427b5

Browse files
committed
WIP
1 parent a6efcaf commit 4c427b5

File tree

3 files changed

+5
-7
lines changed

3 files changed

+5
-7
lines changed

docs/index.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ See the docs overview at [https://cz-nic.github.io/mininterface/](https://cz-nic
124124

125125
# Gallery
126126

127-
Some of the projects that reduced the code base thanks to the mininterface.
127+
These projects have the code base reduced thanks to the mininterface:
128128

129129
* **[deduplidog](https://github.com/CZ-NIC/deduplidog/)** – Find duplicates in a scattered directory structure
130130
* **[touch-timestamp](https://github.com/CZ-NIC/touch-timestamp/)** – A powerful dialog to change the files' timestamp

mininterface/auxiliary.py

+3-4
Original file line numberDiff line numberDiff line change
@@ -130,10 +130,9 @@ def subclass_matches_annotation(cls, annotation) -> bool:
130130

131131
# simple types like scalars
132132
try:
133-
return issubclass(cls, annotation) # TODO tuple[int, str] is not a class
134-
except Exception:
135-
print("135: cls, annotation", cls, " ––– ", annotation) # TODO
136-
raise
133+
return issubclass(cls, annotation) # cls=tuple[int, str] raises an error since Python 3.13
134+
except TypeError:
135+
return False
137136

138137

139138
def serialize_structure(obj):

tests/tests.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -506,8 +506,7 @@ def test_subclass_matches_annotation(self):
506506
self.assertFalse(subclass_matches_annotation(int, annotation))
507507

508508
# The subclass_matches_annotation is not almighty. Tag behaves better:
509-
self.assertTrue(Tag(annotation=annotation)._is_subclass(tuple[int, str])) # TODO
510-
# TODO fails issubclass(tuple[int, str], ...) arg 1 must be a class
509+
self.assertTrue(Tag(annotation=annotation)._is_subclass(tuple[int, str]))
511510
# NOTE but this should work too
512511
# self.assertTrue(Tag(annotation=annotation)._is_subclass(list[int]))
513512

0 commit comments

Comments
 (0)