Skip to content

Commit

Permalink
[tokenizing] revert requirement for eat_whitespace()
Browse files Browse the repository at this point in the history
  • Loading branch information
apalala committed Oct 16, 2023
1 parent f06d0e8 commit df52528
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions tatsu/tokenizing.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
from __future__ import annotations

from .util._common import _prints
from .exceptions import ParseError # noqa

Expand Down Expand Up @@ -40,9 +38,6 @@ def current(self):
def token(self):
return self.current

def eat_whitespace(self):
raise NotImplementedError

def next(self):
raise NotImplementedError

Expand Down

0 comments on commit df52528

Please sign in to comment.