Skip to content

Commit

Permalink
Remove None typehin
Browse files Browse the repository at this point in the history
  • Loading branch information
Horofic committed Jan 29, 2024
1 parent d809f76 commit dc5419a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dissect/shellitem/lnk/lnk.py
Original file line number Diff line number Diff line change
Expand Up @@ -323,7 +323,7 @@ class LnkTargetIdList:
size: Size of the TARGET_IDLIST structure
"""

def __init__(self, fh: Optional[BinaryIO] = None, size: Optional[int] = None) -> None:
def __init__(self, fh: Optional[BinaryIO] = None, size: Optional[int] = None):
self.target_idlist = None
self.idlist = None
self.size = None
Expand Down

0 comments on commit dc5419a

Please sign in to comment.