Skip to content

Commit

Permalink
chore: typing
Browse files Browse the repository at this point in the history
  • Loading branch information
phil65 committed Nov 4, 2024
1 parent 53d2234 commit 1d65f8f
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/jinjarope/deepmerge.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

from __future__ import annotations

from typing import TYPE_CHECKING, TypeVar
from typing import TYPE_CHECKING, Any, TypeVar


if TYPE_CHECKING:
Expand Down Expand Up @@ -74,7 +74,8 @@ def merge_list(merger: DeepMerger, source: list, target: list) -> list:
class DeepMerger:
"""A class that handles deep merging of data structures.
The merger can be customized by providing different merge strategies for different types.
The merger can be customized by providing different merge strategies
for different types.
Attributes:
mergers: A dictionary mapping types to their corresponding merge functions
Expand Down

0 comments on commit 1d65f8f

Please sign in to comment.