Skip to content

Commit

Permalink
remove trailing space
Browse files Browse the repository at this point in the history
  • Loading branch information
hugsy authored Jan 20, 2024
1 parent d8b84e5 commit 0b863d9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,6 @@ def tearDown(self) -> None:

@property
def gdb_version(self) -> Tuple[int, int]:
res = [int(d) for d in re.search(r"(\d+)\D(\d+)", self._gdb.VERSION).groups()]
res = [int(d) for d in re.search(r"(\d+)\D(\d+)", self._gdb.VERSION).groups()]
assert len(res) >= 2
return tuple(res)

0 comments on commit 0b863d9

Please sign in to comment.