Skip to content

Commit 36aea60

Browse files
committed
flake8
1 parent bc9321a commit 36aea60

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

qiita_db/analysis.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -130,13 +130,13 @@ def create(cls, owner, name, description, parent=None, from_default=False):
130130
RETURNING analysis_id""".format(cls._table)
131131
conn_handler.add_to_queue(queue, sql, (owner.id, name,
132132
description))
133-
sql = """UPDATE qiita.analysis_sample
133+
sql = """UPDATE qiita.analysis_sample
134134
SET analysis_id = %s
135135
WHERE analysis_id = %s RETURNING %s"""
136136
conn_handler.add_to_queue(queue, sql, ['{0}', dflt_id, '{0}'])
137137
else:
138138
# insert analysis information into table as "in construction"
139-
sql = """INSERT INTO qiita.{0}
139+
sql = """INSERT INTO qiita.{0}
140140
(email, name, description, analysis_status_id)
141141
VALUES (%s, %s, %s, 1)
142142
RETURNING analysis_id""".format(cls._table)

0 commit comments

Comments
 (0)