Major fixes and new features
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
This commit is contained in:
11
venv/lib/python3.12/site-packages/flake8/_compat.py
Normal file
11
venv/lib/python3.12/site-packages/flake8/_compat.py
Normal file
@@ -0,0 +1,11 @@
|
||||
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
|
||||
Reference in New Issue
Block a user