Skip to content

Commit

Permalink
Typehint fix
Browse files Browse the repository at this point in the history
  • Loading branch information
mrkickling committed Jul 15, 2024
1 parent 241268f commit 6d4d8a8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions maltoolbox/attackgraph/attacker.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@
@dataclass
class Attacker:
name: str
entry_points: list[node.AttackGraphNode] = field(default_factory=list)
reached_attack_steps: list[node.AttackGraphNode] = \
entry_points: list[AttackGraphNode] = field(default_factory=list)
reached_attack_steps: list[AttackGraphNode] = \
field(default_factory=list)
id: int = None

Expand Down

0 comments on commit 6d4d8a8

Please sign in to comment.