Skip to content

Commit

Permalink
Removed unecessary option
Browse files Browse the repository at this point in the history
  • Loading branch information
fujiisoup committed Dec 2, 2023
1 parent 571f22a commit e0287f0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sif_parser/_sif_open.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ def _to_string(c):
''' convert bytes to string. c: string or bytes'''
return c if not isinstance(c, bytes) else c.decode('utf-8')

def _read_string(fp, length=None, delimiter='\n'):
def _read_string(fp, length=None):
'''Read a string of the given length. If no length is provided, the
length is read from the file.'''
if length is None:
Expand Down

0 comments on commit e0287f0

Please sign in to comment.