fixing lint

This commit is contained in:
kira0204 2018-03-07 16:12:12 +05:30
parent 57197c3e6c
commit 167e01acdf

View File

@ -321,9 +321,9 @@ def test_collect_commands():
c = command.CommandManager(tctx.master) c = command.CommandManager(tctx.master)
a = TDec() a = TDec()
c.collect_commands(a) c.collect_commands(a)
assert not "cmd1" in c.commands assert "cmd1" not in c.commands
assert not "cmd2" in c.commands assert "cmd2" not in c.commands
assert not "empty" in c.commands assert "empty" not in c.commands
def test_decorator(): def test_decorator():