Skip to content

Commit c9edc65

Browse files
author
fraser.todd
committed
removed unused ignore
1 parent 3963916 commit c9edc65

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pythonosc/osc_message_builder.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ def add_arg(self, arg_value: ArgValue, arg_type: Optional[str] = None) -> None:
9696
arg_type = self._get_arg_type(arg_value)
9797
if isinstance(arg_type, list):
9898
self._args.append((self.ARG_TYPE_ARRAY_START, None))
99-
for v, t in zip(arg_value, arg_type): # type: ignore[var-annotated, arg-type]
99+
for v, t in zip(arg_value, arg_type): # type: ignore[arg-type]
100100
self.add_arg(v, t)
101101
self._args.append((self.ARG_TYPE_ARRAY_STOP, None))
102102
else:

0 commit comments

Comments
 (0)