I need to check if a variable is a regular expression match object.
print(type(m)) returns something like that: <_sre.SRE_Match object at 0x000
print(type(m))
<_sre.SRE_Match object at 0x000
from typing import Match isinstance(m, Match)