Skip to content

Commit

Permalink
cms_form: marshaller fix typing declaration
Browse files Browse the repository at this point in the history
  • Loading branch information
simahawk committed Feb 7, 2025
1 parent 8c88d31 commit 3ab2e71
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cms_form/marshallers.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
except ImportError:
HAS_DATACLASS = False

from typing import Any
from typing import Any, List

import werkzeug

Expand All @@ -34,7 +34,7 @@ def marshal_request_values(values):
class Todo:
okey: str
oval: Any
handlers: list[Callable]
handlers: List[Callable]
else:
class Todo:
def __init__(self, okey, oval, handlers):
Expand Down

0 comments on commit 3ab2e71

Please sign in to comment.