ignore type error as delimited_list is a function, but DelimitedList is a class
This commit is contained in:
parent
114d3807d7
commit
fb7c32bc0e
@ -26,7 +26,7 @@ try:
|
||||
from pyparsing import DelimitedList
|
||||
except ImportError:
|
||||
# delimited_list is deprecated in favor of DelimitedList in pyparsing 3.1.0
|
||||
from pyparsing import delimited_list as DelimitedList
|
||||
from pyparsing import delimited_list as DelimitedList # type: ignore[assignment]
|
||||
|
||||
from .exceptions import (
|
||||
InvalidInputException,
|
||||
|
Loading…
Reference in New Issue
Block a user