Skip to content

Commit 9afd8f6

Browse files
committed
[testFile] remove unnecessary parentheses
1 parent 8e328b4 commit 9afd8f6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

nixio/test/test_file.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,9 +66,9 @@ def test_file_blocks(self):
6666
with self.assertRaises(ValueError):
6767
self.file.create_block()
6868
self.file.create_block(name="a name")
69-
69+
7070
b = self.file.create_block(type_="type_a")
71-
assert(b.id == b.name)
71+
assert b.id == b.name
7272

7373
def test_file_sections(self):
7474
assert len(self.file.sections) == 0

0 commit comments

Comments
 (0)