Skip to content

Commit

Permalink
remove a couple of style errors to get tests passing again
Browse files Browse the repository at this point in the history
  • Loading branch information
jakebeal committed Apr 11, 2024
1 parent c897809 commit 8760f9a
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion test/test_participation.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ def test_add_remove_role(self):
self.assertEqual([sbol2.SO_PROMOTER, sbol2.SO_CDS], p.roles)

def test_init_with_participant(self):

p = sbol2.Participation('p', participant='p1')
self.assertEqual('p1', p.participant)

Expand Down
2 changes: 1 addition & 1 deletion test/test_style.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ def test_wildcard_imports(self):
if 'import' in line:
if '*' in line and 'constants' not in line:
msg = 'Wildcard import in {}: {}'
msg = msg.format(f, line)
_ = msg.format(f, line)
# self.fail(msg)
# print(msg)
wildcard_count += 1
Expand Down

0 comments on commit 8760f9a

Please sign in to comment.