Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion macrobond_data_api/_get_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
import sys
from typing import TYPE_CHECKING, Optional, List


if TYPE_CHECKING: # pragma: no cover
from macrobond_data_api.common.api import Api

Expand Down
1 change: 0 additions & 1 deletion macrobond_data_api/com/_com_api_search.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
from macrobond_data_api.common.types import SearchResult
from ._fix_datetime import _fix_datetime


if TYPE_CHECKING: # pragma: no cover
from .com_api import ComApi

Expand Down
1 change: 0 additions & 1 deletion macrobond_data_api/common/types/metadata.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
from typing import Any, Mapping


Metadata = Mapping[str, Any]
1 change: 0 additions & 1 deletion macrobond_data_api/web/_split_in_to_chunks.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
from typing import Generator, Sequence, TypeVar


SplitInToChunksTypeVar = TypeVar("SplitInToChunksTypeVar")


Expand Down
1 change: 0 additions & 1 deletion macrobond_data_api/web/configuration.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
from typing import Type


__pdoc__ = {
"Configuration.__init__": False,
}
Expand Down
1 change: 0 additions & 1 deletion macrobond_data_api/web/session.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@
from ._metadata import _Metadata
from .configuration import Configuration


if TYPE_CHECKING: # pragma: no cover
from requests import Response

Expand Down
1 change: 0 additions & 1 deletion macrobond_data_api/web/web_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,6 @@

from .session import Session


__pdoc__ = {
"WebApi.__init__": False,
}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
from typing import Optional, Dict, Any, List, TYPE_CHECKING


if TYPE_CHECKING: # pragma: no cover
from requests import Response

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@
"pytest==9.0.2",
"pytest-xdist==3.8.0",
"coverage==7.13.5",
"black[jupyter]==25.12.0",
"black[jupyter]==26.3.1",
"requests[socks]>=2.32.5",
"nbconvert==7.17.0",
"ipython>=7.34.0",
Expand Down
Loading