Skip to content

Commit cbf6ace

Browse files
committed
test issue doc
1 parent 8c4827d commit cbf6ace

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

lstmcpipe/config/paths_config.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -533,6 +533,7 @@ def load_pointings(self, join_type='inner'):
533533
Returns
534534
-------
535535
'astropy.table.QTable`
536+
536537
"""
537538
tabs = {}
538539

lstmcpipe/hiperta/reorganize_dl1hiperta300_to_dl1lstchain060.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -136,8 +136,7 @@ def dump_plus_copy_node_to_create_new_table(
136136
astropy_table_to_copy : astropy table to be copied
137137
newparent_pointer : newparent copy_node parameter
138138
newname_pointer : newname copy_node parameter
139-
tmp_name : [str] flag to identify the temportal table and make it unique (necessary when simultaneous reorganizers
140-
are run in the same dir)
139+
tmp_name : [str] flag to identify the temportal table and make it unique (necessary when simultaneous reorganizers are run in the same dir)
141140
overwrite : overwrite parameter of the copy_node method
142141
"""
143142
input_filename = input_filename.split("___")[0]

lstmcpipe/utils.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -190,9 +190,11 @@ def run_command(*args):
190190
args: str or iter
191191
`Shell` is forced to True, thus a single string (shell cmd) is expected.
192192
193+
193194
Returns
194195
-------
195196
(subprocess.Popen.stdout).strip('\n')
197+
196198
"""
197199
cmd = sp.Popen(args, shell=True, stdout=sp.PIPE, stderr=sp.STDOUT, encoding='utf-8')
198200
stdout, _ = cmd.communicate()

0 commit comments

Comments
 (0)