Skip to content

Commit de54eeb

Browse files
committed
🔨 Update noqa for Unused static method argument
1 parent bb44148 commit de54eeb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tiatoolbox/annotation/storage.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -442,8 +442,8 @@ class AnnotationStore(ABC, MutableMapping[str, Annotation]):
442442

443443
def __new__(
444444
cls: type[StoreInstanceType],
445-
*args: str,
446-
**kwargs: int,
445+
*args: str, # noqa: ARG004
446+
**kwargs: int, # noqa: ARG004
447447
) -> StoreInstanceType:
448448
"""Return an instance of a subclass of AnnotationStore."""
449449
if cls is AnnotationStore:

0 commit comments

Comments
 (0)