Skip to content

Commit 76c4804

Browse files
committed
Minor docstring fixes
1 parent 224a108 commit 76c4804

1 file changed

Lines changed: 14 additions & 14 deletions

File tree

element_miniscope/miniscope.py

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ class AcquisitionSoftware(dj.Lookup):
104104
"""Software used for miniscope acquisition.
105105
106106
Attributes:
107-
acquisition_software (varchar(24)): Name of the miniscope acquisition software."""
107+
acquisition_software (varchar(24) ): Name of the miniscope acquisition software."""
108108

109109
definition = """
110110
acquisition_software: varchar(24)
@@ -134,8 +134,8 @@ class Recording(dj.Manual):
134134
recording_id (foreign key, int): Unique recording ID.
135135
Equipment: Lookup table for miniscope equipment information.
136136
AcquisitionSoftware: Lookup table for miniscope acquisition software.
137-
recording_directory (varchar(255)): relative path to recording files.
138-
recording_notes (varchar(4095)): notes about the recording session.
137+
recording_directory (varchar(255) ): relative path to recording files.
138+
recording_notes (varchar(4095) ): notes about the recording session.
139139
"""
140140

141141
definition = """
@@ -211,7 +211,7 @@ class File(dj.Part):
211211
Attributes:
212212
master (foreign key): Recording primary key.
213213
file_id (foreign key, smallint): Unique file ID.
214-
path_path (varchar(255)): Relative file path to recording file.
214+
path_path (varchar(255) ): Relative file path to recording file.
215215
"""
216216

217217
definition = """
@@ -341,7 +341,7 @@ class ProcessingMethod(dj.Lookup):
341341
342342
Attributes:
343343
processing_method (foreign key, char16): Recording processing method (e.g. CaImAn).
344-
processing_method_desc (varchar(1000)): Additional information about the processing method.
344+
processing_method_desc (varchar(1000) ): Additional information about the processing method.
345345
"""
346346

347347
definition = """
@@ -361,8 +361,8 @@ class ProcessingParamSet(dj.Lookup):
361361
362362
Attributes:
363363
paramset_idx (foreign key, smallint): Unique parameter set ID.
364-
ProcessingMethod (char(16)): ProcessingMethod from the lookup table.
365-
paramset_desc (varchar(128)): Description of the parameter set.
364+
ProcessingMethod (char(16) ): ProcessingMethod from the lookup table.
365+
paramset_desc (varchar(128) ): Description of the parameter set.
366366
paramset_set_hash (uuid): UUID hash for parameter set.
367367
params (longblob): Dictionary of all parameters for the processing method.
368368
"""
@@ -431,7 +431,7 @@ class ProcessingTask(dj.Manual):
431431
Attributes:
432432
RecordingInfo (foreign key): Recording info primary key.
433433
ProcessingParamSet (foreign key): Processing param set primary key.
434-
processing_output_dir (varchar(255)): relative output data directory for processed files.
434+
processing_output_dir (varchar(255) ): relative output data directory for processed files.
435435
task_mode (enum): Load existing results or trigger new processing task.
436436
"""
437437

@@ -453,7 +453,7 @@ class Processing(dj.Computed):
453453
Attributes:
454454
ProcessingTask (foreign key): Processing task primary key.
455455
processing_time (datetime): Generates time of the processed results.
456-
package_version (varchar(16)): Package version information.
456+
package_version (varchar(16) ): Package version information.
457457
"""
458458

459459
definition = """
@@ -550,9 +550,9 @@ class Curation(dj.Manual):
550550
Processing (foreign key): Processing primary key.
551551
curation_id (foreign key, int): Unique curation ID.
552552
curation_time (datetime): Time of generation of curated results.
553-
curation_output_dir (varchar(255)): Output directory for curated results.
553+
curation_output_dir (varchar(255) ): Output directory for curated results.
554554
manual_curation (bool): If True, manual curation has been performed.
555-
curation_note (varchar(2000)): Optional description of the curation procedure.
555+
curation_note (varchar(2000) ): Optional description of the curation procedure.
556556
"""
557557

558558
definition = """
@@ -935,7 +935,7 @@ class MaskType(dj.Lookup):
935935
"""Possible classifications of a segmented mask.
936936
937937
Attributes:
938-
mask_type (foreign key, varchar(16)): Type of segmented mask.
938+
mask_type (foreign key, varchar(16) ): Type of segmented mask.
939939
"""
940940

941941
definition = """ # Possible classifications for a segmented mask
@@ -950,7 +950,7 @@ class MaskClassificationMethod(dj.Lookup):
950950
"""Method to classify segmented masks.
951951
952952
Attributes:
953-
mask_classification_method (foreign key, varchar(48)): Method by which masks are classified into mask types.
953+
mask_classification_method (foreign key, varchar(48) ): Method by which masks are classified into mask types.
954954
"""
955955

956956
definition = """
@@ -1068,7 +1068,7 @@ class ActivityExtractionMethod(dj.Lookup):
10681068
"""Lookup table for activity extraction methods.
10691069
10701070
Attributes:
1071-
extraction_method (foreign key, varchar(200)): Extraction method from CaImAn.
1071+
extraction_method (foreign key, varchar(200) ): Extraction method from CaImAn.
10721072
"""
10731073

10741074
definition = """

0 commit comments

Comments
 (0)