Remove redundant parentheses

This commit is contained in:
Hugo
2017-12-21 11:19:58 +02:00
parent 8b79d909ea
commit c6f2fdcc31
2 changed files with 2 additions and 2 deletions

View File

@@ -126,7 +126,7 @@ class TestLoadScheduling:
sched.add_node(MockNode())
sched.add_node(MockNode())
node1, node2 = sched.nodes
col = ["xyz"] * (6)
col = ["xyz"] * 6
sched.add_node_collection(node1, col)
sched.add_node_collection(node2, col)
sched.schedule()