Skip to content

Commit 80c4b87

Browse files
committed
code style
1 parent 20c679a commit 80c4b87

File tree

1 file changed

+8
-6
lines changed

1 file changed

+8
-6
lines changed

qiita_db/environment_manager.py

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -127,10 +127,11 @@ def _download_reference_files():
127127

128128
_insert_processed_params(ref)
129129

130+
130131
def create_mountpoints():
131-
r"""In a fresh qiita setup, sub-directories under qiita_config.base_data_dir
132-
might not yet exist. To avoid failing in later steps, they are created
133-
here.
132+
r"""In a fresh qiita setup, sub-directories under
133+
qiita_config.base_data_dir might not yet exist. To avoid failing in
134+
later steps, they are created here.
134135
"""
135136
with qdb.sql_connection.TRN:
136137
# Insert the settings values to the database
@@ -152,9 +153,10 @@ def create_mountpoints():
152153
created_subdirs.append(subdir)
153154

154155
if len(created_subdirs) > 0:
155-
print("Created %i sub-directories as 'mount points' in '%s': %s" % (
156-
len(created_subdirs), qiita_config.base_data_dir,
157-
', '.join(created_subdirs)))
156+
print("Created %i sub-directories as 'mount points' in '%s': %s"
157+
% (len(created_subdirs), qiita_config.base_data_dir,
158+
', '.join(created_subdirs)))
159+
158160

159161
def make_environment(load_ontologies, download_reference, add_demo_user):
160162
r"""Creates the new environment specified in the configuration

0 commit comments

Comments
 (0)