Skip to content

Commit

Permalink
chore: mypy
Browse files Browse the repository at this point in the history
Signed-off-by: Luka Peschke <[email protected]>
  • Loading branch information
lukapeschke committed Nov 22, 2023
1 parent dae2636 commit 131e8b2
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion toucan_connectors/hubspot_private_app/hubspot_connector.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
from typing import Any, Generator, Protocol, TypeAlias

import pandas as pd
from hubspot import HubSpot # type:ignore[import]
from hubspot import HubSpot # type:ignore[import-untyped]
from pydantic import BaseModel, Field, SecretStr

from toucan_connectors.pagination import build_pagination_info
Expand Down
2 changes: 1 addition & 1 deletion toucan_connectors/snowflake/snowflake_connector.py
Original file line number Diff line number Diff line change
Expand Up @@ -471,4 +471,4 @@ def get_model(self, db_name: str | None = None) -> list[TableInfo]:
]
)

return self.format_db_model(values) # type: ignore[arg-type]
return self.format_db_model(values)
2 changes: 1 addition & 1 deletion toucan_connectors/toucan_connector.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
from toucan_connectors.utils.datetime import sanitize_df_dates

try:
from bearer import Bearer # type: ignore[import]
from bearer import Bearer # type: ignore[import-untyped]
except ImportError:
pass

Expand Down

0 comments on commit 131e8b2

Please sign in to comment.