Skip to content

Commit 8760f9a

Browse files
committed
remove a couple of style errors to get tests passing again
1 parent c897809 commit 8760f9a

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

test/test_participation.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ def test_add_remove_role(self):
1717
self.assertEqual([sbol2.SO_PROMOTER, sbol2.SO_CDS], p.roles)
1818

1919
def test_init_with_participant(self):
20-
2120
p = sbol2.Participation('p', participant='p1')
2221
self.assertEqual('p1', p.participant)
2322

test/test_style.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ def test_wildcard_imports(self):
4949
if 'import' in line:
5050
if '*' in line and 'constants' not in line:
5151
msg = 'Wildcard import in {}: {}'
52-
msg = msg.format(f, line)
52+
_ = msg.format(f, line)
5353
# self.fail(msg)
5454
# print(msg)
5555
wildcard_count += 1

0 commit comments

Comments
 (0)