Skip to content

Commit dc1bbb0

Browse files
committed
Format
1 parent 47fd445 commit dc1bbb0

File tree

3 files changed

+1
-5
lines changed

3 files changed

+1
-5
lines changed

client/src/bundleEntries.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@ import _ from "underscore"; // eslint-disable-line no-unused-vars
2121
export { getGalaxyInstance, setGalaxyInstance } from "app";
2222
export { default as LegacyGridView } from "legacy/grid/grid-view";
2323
export { createTabularDatasetChunkedView } from "mvc/dataset/data";
24-
2524
export { create_chart, create_histogram } from "reports/run_stats";
2625
export { Toast } from "ui/toast"; // TODO: remove when external consumers are updated/gone (IES right now)
2726

lib/galaxy/tool_util/toolbox/filters/__init__.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,4 +100,3 @@ def _handle_authorization(context, tool):
100100
if not tool.allow_user_access(user, attempting_access=False):
101101
return False
102102
return True
103-

lib/galaxy/webapps/galaxy/api/tools.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -352,9 +352,7 @@ def index(self, trans: GalaxyWebTransaction, **kwds):
352352

353353
# Return everything.
354354
try:
355-
return self.app.toolbox.to_dict(
356-
trans, in_panel=in_panel, tool_help=tool_help, view=view
357-
)
355+
return self.app.toolbox.to_dict(trans, in_panel=in_panel, tool_help=tool_help, view=view)
358356
except exceptions.MessageException:
359357
raise
360358
except Exception:

0 commit comments

Comments
 (0)