mirror of
https://github.com/kellyjonbrazil/jc.git
synced 2025-07-15 01:24:29 +02:00
remove re type annotations for python 3.6 compatibility
This commit is contained in:
@ -140,7 +140,6 @@ def _process(proc_data: List[JSONDictType]) -> List[JSONDictType]:
|
|||||||
return proc_data
|
return proc_data
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
def _replace(matchobj):
|
def _replace(matchobj):
|
||||||
if matchobj:
|
if matchobj:
|
||||||
matchlen = len(matchobj.group(1))
|
matchlen = len(matchobj.group(1))
|
||||||
|
@ -326,7 +326,7 @@ def _process(proc_data: List[JSONDictType]) -> List[JSONDictType]:
|
|||||||
return proc_data
|
return proc_data
|
||||||
|
|
||||||
|
|
||||||
def _bundle_match(pattern_list: List[re.Pattern], string: str) -> Optional[re.Match]:
|
def _bundle_match(pattern_list, string):
|
||||||
"""Returns a match object if a string matches one of a list of patterns.
|
"""Returns a match object if a string matches one of a list of patterns.
|
||||||
If no match is found, returns None"""
|
If no match is found, returns None"""
|
||||||
for pattern in pattern_list:
|
for pattern in pattern_list:
|
||||||
|
Reference in New Issue
Block a user