Skip to content

Commit

Permalink
Update tools.py
Browse files Browse the repository at this point in the history
Remove redundant defaults.
  • Loading branch information
dcore94 authored May 3, 2024
1 parent 4c188ca commit 0658088
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/galaxy/managers/tools.py
Original file line number Diff line number Diff line change
Expand Up @@ -110,8 +110,8 @@ def create_tool(self, trans, tool_payload, allow_load=True):
tool_path=tool_path,
tool_directory=tool_directory,
uuid=uuid,
active=tool_payload.get("active", True),
hidden=tool_payload.get("hidden", True),
active=tool_payload.get("active"),
hidden=tool_payload.get("hidden"),
value=representation,
)
self.app.toolbox.load_dynamic_tool(dynamic_tool)
Expand Down

0 comments on commit 0658088

Please sign in to comment.