Skip to content

Commit

Permalink
Remove an unneeded field annotation
Browse files Browse the repository at this point in the history
  • Loading branch information
MSK61 committed Nov 13, 2024
1 parent 3453b1d commit 01046f2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/sim_services/_instr_sinks.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ class HostedInstr:
class InstrMovStatus:
"""Status of moving instructions"""

moved: list[HostedInstr] = field(factory=list)
moved: list[HostedInstr] = attr.Factory(list)

mem_used: object = field(default=False, init=False)

Expand Down

0 comments on commit 01046f2

Please sign in to comment.