Skip to content
Snippets Groups Projects
Verified Commit 24cb3b9e authored by Rajmund Hruška's avatar Rajmund Hruška
Browse files

Refactor: Remove unused import

parent 32c06c2b
No related branches found
No related tags found
No related merge requests found
......@@ -90,9 +90,6 @@ class Parser:
list: "[" [atom ("," atom)*] "]"
%import common.CNAME -> NAME
%import common.WS
NUMBER: /\d+(\.\d+)?([eE][+-]?\d+)?/
IPV4.2: /\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}/
IPV4_RANGE.2: /\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}-\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}/
......@@ -108,6 +105,7 @@ class Parser:
FUNCTION.2: /[_a-zA-Z][_a-zA-Z0-9]*\(/
NUMBER_RANGE.2: /(-?\d+(\.\d+)?)\s*(\.\.)\s*(-?\d+(\.\d+)?)/
%import common.WS
%ignore WS
""" # noqa
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment