Skip to content

Commit

Permalink
Remove stray self parameter
Browse files Browse the repository at this point in the history
  • Loading branch information
olsaarik committed Oct 20, 2021
1 parent e2d566e commit 0c9c93c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sccl/autosynth/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@ def ndv2_perm(): # pragma: no cover
return _select_isomorphism(isomorphisms)


def _select_isomorphism(self, isomorphisms, verbose=True): # pragma: no cover
def _select_isomorphism(isomorphisms, verbose=True): # pragma: no cover
with open('/var/lock/sccl_autosynth_inspector_topo.lock', "a+") as f:
fcntl.lockf(f, fcntl.LOCK_EX)
try:
Expand Down

0 comments on commit 0c9c93c

Please sign in to comment.