You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The REPP code assumes that match.group(index) will return a string, but if the group specified by index was not matched at all, the expression will return None, leading to some kind of type error. For instance:
The REPP code assumes that
match.group(index)
will return a string, but if the group specified byindex
was not matched at all, the expression will returnNone
, leading to some kind of type error. For instance:Also I think that the REPP rules that result in this error are bad patterns and should be fixed (e.g., something like
!(a)(b*) \1 \2
for the above).The text was updated successfully, but these errors were encountered: