1
0
Fork 0
mirror of https://github.com/topydo/topydo.git synced 2024-05-20 13:58:33 +00:00

Remove unused variable

This commit is contained in:
Bram Schoenmakers 2017-07-30 12:47:32 +02:00
parent c13c9fb972
commit 25228ed06f

View file

@ -118,7 +118,7 @@ class GetSubcommandTest(TopydoTest):
config("test/data/aliases.conf")
args = ["baz"]
real_cmd, final_args = get_subcommand(args)
real_cmd, _ = get_subcommand(args)
self.assertEqual(real_cmd, None)
def test_alias_quotation(self):