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
More of a quality of (developer) life feature. Regexes are used throughout the code, and instead of referring to groups by numbering, it might be nicer to refer to the groups by names, e.g. (?P<domain>[a-zA-Z]+) and match["domain"].
The text was updated successfully, but these errors were encountered:
More of a quality of (developer) life feature. Regexes are used throughout the code, and instead of referring to groups by numbering, it might be nicer to refer to the groups by names, e.g.
(?P<domain>[a-zA-Z]+)
andmatch["domain"]
.The text was updated successfully, but these errors were encountered: