Skip to content

Commit e9aff2f

Browse files
committed
Fix lint
1 parent 379fd85 commit e9aff2f

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Tools/clinic/libclinic/dsl_parser.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -474,9 +474,9 @@ def at_vectorcall(self, *args: str) -> None:
474474
self.vectorcall = True
475475
for arg in args:
476476
if '=' in arg:
477-
key, value = arg.split('=', 1)
477+
key = arg.split('=', 1)[0]
478478
else:
479-
key, value = arg, ''
479+
key = arg
480480
if key == 'exact_only':
481481
self.vectorcall_exact_only = True
482482
else:

0 commit comments

Comments
 (0)