Skip to content
Snippets Groups Projects

make type ignore statements more specific

Merged Karel van Klink requested to merge feature/more-specific-type-ignore into develop
11 files
+ 31
28
Compare changes
  • Side-by-side
  • Inline
Files
11
@@ -19,7 +19,7 @@ class IptrunkType(strEnum):
T = TypeVar("T", covariant=True)
class IptrunkSides(UniqueConstrainedList[T]): # type: ignore
class IptrunkSides(UniqueConstrainedList[T]): # type: ignore[type-var]
min_items = 2
max_items = 2
Loading