Skip to content

Commit

Permalink
fix: mypy config
Browse files Browse the repository at this point in the history
  • Loading branch information
JasperHG90 committed Oct 19, 2024
1 parent 8f3638d commit f3a02bb
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
3 changes: 1 addition & 2 deletions examples/partitioned_dag.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,8 @@
import numpy as np
import pyarrow as pa
from dagster import DailyPartitionsDefinition, Definitions, Jitter, RetryPolicy, asset
from pyiceberg.catalog.sql import SqlCatalog

from dagster_pyiceberg import IcebergPyarrowIOManager, IcebergSqlCatalogConfig
from pyiceberg.catalog.sql import SqlCatalog

CATALOG_URI = "sqlite:////home/vscode/workspace/.tmp/dag/warehouse/catalog.db"
CATALOG_WAREHOUSE = "file:///home/vscode/workspace/.tmp/dag/warehouse"
Expand Down
3 changes: 1 addition & 2 deletions examples/simple_dag.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,8 @@
import numpy as np
import pyarrow as pa
from dagster import Definitions, asset
from pyiceberg.catalog.sql import SqlCatalog

from dagster_pyiceberg import IcebergPyarrowIOManager, IcebergSqlCatalogConfig
from pyiceberg.catalog.sql import SqlCatalog

CATALOG_URI = "sqlite:////home/vscode/workspace/.tmp/dag/warehouse/catalog.db"
CATALOG_WAREHOUSE = "file:///home/vscode/workspace/.tmp/dag/warehouse"
Expand Down
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@ extend_skip = [".notebooks", ".nox", ".venv"]
[tool.mypy]
exclude = "^.notebooks/"
ignore_missing_imports = true
explicit_package_bases = true

[tool.bandit]
skips = ['B101']
Expand Down

0 comments on commit f3a02bb

Please sign in to comment.