Skip to content

Commit

Permalink
Move placement of optional in Func
Browse files Browse the repository at this point in the history
  • Loading branch information
mahaloz committed May 30, 2024
1 parent 3840ade commit b4d514a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libbs/artifacts/func.py
Original file line number Diff line number Diff line change
Expand Up @@ -196,10 +196,10 @@ def __init__(
self,
addr: int = None,
size: int = None,
name: str = None,
header: Optional[FunctionHeader] = None,
stack_vars: Optional[Dict[int, StackVariable]] = None,
dec_obj: Optional[object] = None,
name: str = None,
**kwargs
):
super().__init__(**kwargs)
Expand Down

0 comments on commit b4d514a

Please sign in to comment.