diff options
-rw-r--r-- | isort/isort.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/isort/isort.py b/isort/isort.py index cc956eb1..90dcd72f 100644 --- a/isort/isort.py +++ b/isort/isort.py @@ -605,7 +605,7 @@ class SortImports(object): return self._output_vertical_grid_common(statement, imports, white_space, indent, line_length, comments) + "\n)" def _output_noqa(self, statement, imports, white_space, indent, line_length, comments): - retval = '{0}{1}'.format(statement, ' '.join(imports)) + retval = '{0}{1}'.format(statement, ', '.join(imports)) comment_str = ' '.join(comments) if comments: if len(retval) + 4 + len(comment_str) <= line_length: |