Skip to content

Commit

Permalink
use Pattern from typing
Browse files Browse the repository at this point in the history
  • Loading branch information
sanderegg committed Aug 20, 2024
1 parent 38be413 commit aa3f670
Showing 1 changed file with 5 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
import logging
import string
from re import Pattern
from typing import Any, ClassVar
from typing import ( # noqa: UP035 # pydantic does not validate with re.Pattern
Any,
ClassVar,
Pattern,
)

from models_library.basic_regex import (
PUBLIC_VARIABLE_NAME_RE,
Expand Down

0 comments on commit aa3f670

Please sign in to comment.