Skip to content

Commit

Permalink
Add a docstring for the params class.
Browse files Browse the repository at this point in the history
  • Loading branch information
jamescrake-merani committed Jan 15, 2025
1 parent 9011680 commit 44b9f56
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions sasdata/temp_ascii_reader.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,9 @@ def initialise_separator_dict() -> dict[str, bool]:

@dataclass
class AsciiReaderParams:
"""This object contains the parameters that are used to load a series of
ASCII files. These parameters can be generated by the ASCII Reader Dialog
when using SasView."""
filenames: list[str] # These will be the FULL file path. Will need to convert to basenames for some functions.
columns: list[tuple[str, NamedUnit]]
metadata: AsciiReaderMetadata = field(default_factory=AsciiReaderMetadata)
Expand Down

0 comments on commit 44b9f56

Please sign in to comment.