Skip to content

Commit

Permalink
format long lines
Browse files Browse the repository at this point in the history
  • Loading branch information
whitews committed Oct 9, 2024
1 parent 918e22c commit b751c42
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions src/flowkit/_models/workspace.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,16 @@ class Workspace(object):
missing FCS files (i.e. not in fcs_samples arg) will still be loaded. If False, warnings
are issued for FCS files found in the WSP file that were not loaded in the Workspace and
gate data for these missing files will not be retained. Default is False.
:param find_fcs_files_from_wsp: Controls whether to search for FCS files based on `URI` params within the FlowJo
workspace file.
:param find_fcs_files_from_wsp: Controls whether to search for FCS files based on `URI` params
within the FlowJo workspace file.
"""
def __init__(self, wsp_file_path, fcs_samples=None, ignore_missing_files=False, find_fcs_files_from_wsp=False):
def __init__(
self,
wsp_file_path,
fcs_samples=None,
ignore_missing_files=False,
find_fcs_files_from_wsp=False
):
# The sample LUT holds sample IDs (keys) only for loaded samples.
# The values are the Sample instances
self._sample_lut = {}
Expand Down

0 comments on commit b751c42

Please sign in to comment.