Skip to content

Commit

Permalink
fix mypy
Browse files Browse the repository at this point in the history
  • Loading branch information
smcguire-cmu committed Nov 22, 2024
1 parent 90c8a05 commit 01a971f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/lsdb/loaders/dataframe/from_dataframe.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ def from_dataframe(
drop_empty_siblings: bool = False,
partition_size: int | None = None,
threshold: int | None = None,
margin_order: int | None = -1,
margin_order: int = -1,
margin_threshold: float | None = 5.0,
should_generate_moc: bool = True,
moc_max_order: int = 10,
Expand Down
2 changes: 1 addition & 1 deletion src/lsdb/loaders/dataframe/margin_catalog_generator.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ class MarginCatalogGenerator:
def __init__(
self,
catalog: Catalog,
margin_order: int | None = -1,
margin_order: int = -1,
margin_threshold: float = 5.0,
use_pyarrow_types: bool = True,
**kwargs,
Expand Down

0 comments on commit 01a971f

Please sign in to comment.