Skip to content

Commit

Permalink
more black
Browse files Browse the repository at this point in the history
  • Loading branch information
bernt-matthias committed Jun 14, 2023
1 parent 98d67e1 commit d1a7235
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 4 deletions.
2 changes: 0 additions & 2 deletions galaxyxml/tool/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,6 @@ def __init__(
command_override=None,
macros=[],
):

self.id = id
self.executable = executable
self.interpreter = interpreter
Expand Down Expand Up @@ -244,7 +243,6 @@ def __init__(self, *args, **kwargs):
self.outputs = Macro("%s_outmacro" % self.id)

def export(self, keep_old_command=False): # noqa

export_xml = copy.deepcopy(self)

try:
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,5 +20,5 @@
"Environment :: Console",
"License :: OSI Approved :: Apache Software License",
],
data_files=[("", ["LICENSE.TXT"])]
data_files=[("", ["LICENSE.TXT"])],
)
2 changes: 1 addition & 1 deletion test/unit_test_import_xml.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ def test_stdio(self):
class TestOverrides(TestImport):
def test_override(self):
co = "bash foo.sh > output1"
col = co.split(' ')
col = co.split(" ")
self.tool.command_override = col
exml = self.tool.export()
self.assertEqual(self.tool.command_override, col)
Expand Down

0 comments on commit d1a7235

Please sign in to comment.