Skip to content

Commit

Permalink
minor fix
Browse files Browse the repository at this point in the history
  • Loading branch information
DinisCruz committed Jul 2, 2024
1 parent c8e7f4c commit 2db3522
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions osbot_utils/helpers/Zip_Bytes.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@
class Zip_Bytes(Type_Safe):
zip_bytes : bytes = None

def __init__(self):
super().__init__()
def __init__(self, **kwargs):
super().__init__(**kwargs)
self.zip_bytes = zip_bytes_empty()

def __enter__(self):
Expand Down

0 comments on commit 2db3522

Please sign in to comment.