How to Solve NameError: name 'Pattern' is not defined -- typing

Solution: Import the 'Pattern' module

# Add the following line to the top of your code
from typing import Pattern

 

For more information:
typing Pattern