Skip to content

Commit

Permalink
avoid code collisions
Browse files Browse the repository at this point in the history
  • Loading branch information
John Anchery committed Jul 24, 2021
1 parent 6ecd931 commit 54e3c6a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions clashgap/_clash.py
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
from ._gap import gap
from ._fill import fill
from ._gap import gap as gap_of
from ._fill import fill as fill_of

class Clash:
def __init__(self, clash):
self._gap = gap(clash)
self._gap = gap_of(clash)

def gap(self):
return self._gap

def fill(self):
return fill(self._gap)
return fill_of(self._gap)

def __str__(self):
return str(self._gap)
Expand Down

0 comments on commit 54e3c6a

Please sign in to comment.