Skip to content

Commit

Permalink
[squash] Fix pylint
Browse files Browse the repository at this point in the history
  • Loading branch information
LucaTomasko committed Jan 26, 2024
1 parent a703b9d commit 3d2af16
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions scaaml/capture/input_generators/attack_point_iterator.py
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,8 @@ def __init__(self,
name: str,
length: int,
bunches: int = 1,
elements: int = 256) -> None:
elements: int = 256,
**unused) -> None:
"""Initialize the balanced kwargs to iterate."""
self._name = name
self._length = length
Expand Down Expand Up @@ -121,7 +122,8 @@ def __init__(self,
name: str,
length: int,
elements: int = 256,
bunches: int = 1) -> None:
bunches: int = 1,
**unused) -> None:
"""Initialize the unrestricted kwargs to iterate."""
self._name = name
self._length = length
Expand Down

0 comments on commit 3d2af16

Please sign in to comment.