Skip to content

Commit e97e7d8

Browse files
committed
extend docstring
1 parent 44cca51 commit e97e7d8

File tree

2 files changed

+15
-10
lines changed

2 files changed

+15
-10
lines changed

bin/consortium_to_public.py

Lines changed: 10 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,17 @@
22
import datetime
33
import logging
44
import os
5-
import synapseclient
65
import subprocess
76

8-
from genie import dashboard_table_updater
9-
from genie import process_functions
10-
from genie import consortium_to_public
11-
from genie import database_to_staging
12-
from genie import extract
13-
from genie import load
7+
import synapseclient
8+
from genie import (
9+
consortium_to_public,
10+
dashboard_table_updater,
11+
database_to_staging,
12+
extract,
13+
load,
14+
process_functions,
15+
)
1416

1517
logger = logging.getLogger(__name__)
1618

@@ -25,6 +27,7 @@ def generate_dashboard_html(genie_version, staging=False, testing=False):
2527
Args:
2628
genie_version: GENIE release
2729
staging: Use staging files. Default is False
30+
testing: Use testing files. Default is False
2831
2932
"""
3033
markdown_render_cmd = [

bin/database_to_staging.py

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -69,10 +69,8 @@
6969
import logging
7070
import os
7171
import subprocess
72-
import synapseclient
73-
74-
# import time
7572

73+
import synapseclient
7674
from genie import (
7775
create_case_lists,
7876
dashboard_table_updater,
@@ -81,6 +79,9 @@
8179
process_functions,
8280
)
8381

82+
# import time
83+
84+
8485
logger = logging.getLogger(__name__)
8586

8687
PWD = os.path.dirname(os.path.abspath(__file__))
@@ -93,6 +94,7 @@ def generate_dashboard_html(genie_version, staging=False, testing=False):
9394
Args:
9495
genie_version: GENIE release
9596
staging: Use staging files. Default is False
97+
testing: Use testing files. Default is False
9698
9799
"""
98100
markdown_render_cmd = [

0 commit comments

Comments
 (0)