All checks were successful
continuous-integration/drone/push Build is passing
12 lines
283 B
Python
12 lines
283 B
Python
from __future__ import annotations
|
|
|
|
import sys
|
|
import tokenize
|
|
|
|
if sys.version_info >= (3, 12):
|
|
FSTRING_START = tokenize.FSTRING_START
|
|
FSTRING_MIDDLE = tokenize.FSTRING_MIDDLE
|
|
FSTRING_END = tokenize.FSTRING_END
|
|
else:
|
|
FSTRING_START = FSTRING_MIDDLE = FSTRING_END = -1
|