Skip to content

Commit

Permalink
fix: fix bug that would not allow libraryFile to be None
Browse files Browse the repository at this point in the history
  • Loading branch information
jcharkow committed Nov 1, 2024
1 parent 70d9b4b commit 520599c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion massdash/loaders/GenericSpectrumLoader.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ class GenericSpectrumLoader(GenericRawDataLoader, metaclass=ABCMeta):
libraryFile: (str) The path to the library file (.tsv or .pqp)
'''

def __init__(self, libraryFile, **kwargs):
def __init__(self, libraryFile=None, **kwargs):
super().__init__(**kwargs)

self.libraryFile = libraryFile
Expand Down

0 comments on commit 520599c

Please sign in to comment.