Skip to content

Commit

Permalink
Fix code checks
Browse files Browse the repository at this point in the history
  • Loading branch information
Bryan Bartley committed Oct 16, 2023
1 parent 8b35f2d commit 6b2417b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion test/test_collection.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ def test_member_property(self):
collection.members = uris
self.assertIn(sbol3.SBOL_MEMBER, collection._referenced_objects)
self.assertNotIn(sbol3.SBOL_ORIENTATION, collection._referenced_objects)
self.assertListEqual(uris, [m.identity for m in collection.members])
self.assertListEqual(uris, [m.identity for m in collection.members]) # pylint: disable=E1101

# Namespace testing
def test_namespace_deduced(self):
Expand Down
3 changes: 2 additions & 1 deletion test/test_referenced_object.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
import os
import unittest

import sbol3
import rdflib

import sbol3


MODULE_LOCATION = os.path.dirname(os.path.abspath(__file__))
SBOL3_LOCATION = os.path.join(MODULE_LOCATION, 'SBOLTestSuite', 'SBOL3')
Expand Down

0 comments on commit 6b2417b

Please sign in to comment.