Skip to content

Commit f73887f

Browse files
committed
Execute the tests even if you change the format... there might be a space that kills your run...
1 parent d87890b commit f73887f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

qiita_db/metadata_template/base_metadata_template.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1014,8 +1014,8 @@ def to_dataframe(self):
10141014
conn_handler = SQLConnectionHandler()
10151015
cols = sorted(get_table_cols(self._table_name(self._id), conn_handler))
10161016
# Get all metadata for the template
1017-
sql = "SELECT {0}FROM qiita.{1}".format(", ".join(cols),
1018-
self._table_name(self.id))
1017+
sql = "SELECT {0} FROM qiita.{1}".format(", ".join(cols),
1018+
self._table_name(self.id))
10191019
meta = conn_handler.execute_fetchall(sql, (self._id,))
10201020

10211021
# Create the dataframe and clean it up a bit

0 commit comments

Comments
 (0)