Skip to content

Commit

Permalink
Apply @nsoranzo's fix for noqa changes (must end the line, comment co…
Browse files Browse the repository at this point in the history
…mes before it)
  • Loading branch information
dannon committed Jul 25, 2016
1 parent 8559dc0 commit 10745f2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/galaxy/web/framework/helpers/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

from galaxy.util import hash_util
from galaxy.util import unicodify
from galaxy.util.json import safe_dumps as dumps # noqa (used by mako templates)
from galaxy.util.json import safe_dumps as dumps # Used by mako templates # noqa: F401
from webhelpers import date
from webhelpers.html.tags import stylesheet_link, javascript_link

Expand Down
2 changes: 1 addition & 1 deletion test/base/driver_util.py
Original file line number Diff line number Diff line change
Expand Up @@ -442,7 +442,7 @@ def setup_shed_tools_for_test(app, tmpdir, testing_migrated_tools, testing_insta
tool_configs.remove(relative_migrated_tool_panel_config)
for installed_tool_panel_config in INSTALLED_TOOL_PANEL_CONFIGS:
tool_configs.append(installed_tool_panel_config)
from galaxy import tools # noqa, delay import because this brings in so many modules for small tests
from galaxy import tools # delay import because this brings in so many modules for small tests # noqa
app.toolbox = tools.ToolBox(tool_configs, app.config.tool_path, app)


Expand Down

0 comments on commit 10745f2

Please sign in to comment.