Skip to content

Commit 3a0925e

Browse files
committed
Swapped is_right and is_left. Whoops.
1 parent bbdf00a commit 3a0925e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/mind_the_gaps/gaps.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,11 +69,11 @@ def is_open(self) -> bool:
6969
return self.boundary in "()"
7070

7171
@property
72-
def is_right(self) -> bool:
72+
def is_left(self) -> bool:
7373
return self.boundary in "[("
7474

7575
@property
76-
def is_left(self) -> bool:
76+
def is_right(self) -> bool:
7777
return self.boundary in ")]"
7878

7979

0 commit comments

Comments
 (0)