Skip to content

Commit

Permalink
added extended jsonpath_ng parser (#1941)
Browse files Browse the repository at this point in the history
  • Loading branch information
francescomucio authored Oct 14, 2024
1 parent b717627 commit 55e1c3c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions dlt/common/jsonpath.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@

from dlt.common.typing import DictStrAny

from jsonpath_ng import parse as _parse, JSONPath, Fields as JSONPathFields

from jsonpath_ng import JSONPath, Fields as JSONPathFields
from jsonpath_ng.ext import parse as _parse

TJsonPath = Union[str, JSONPath] # Jsonpath compiled or str
TAnyJsonPath = Union[TJsonPath, Iterable[TJsonPath]] # A single or multiple jsonpaths
Expand Down

0 comments on commit 55e1c3c

Please sign in to comment.