Skip to content

Commit

Permalink
fix typing
Browse files Browse the repository at this point in the history
  • Loading branch information
smcguire-cmu committed Nov 13, 2023
1 parent 4e13e03 commit 5abe1a7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/lsdb/io/to_hipscat.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import dataclasses
from copy import copy
from importlib.metadata import version
from typing import Any, Dict, Union, TYPE_CHECKING
from typing import TYPE_CHECKING, Any, Dict, Union

import dask
import hipscat as hc
Expand All @@ -22,7 +22,7 @@ def perform_write(
df: pd.DataFrame,
hp_pixel: HealpixPixel,
base_catalog_dir: FilePointer,
storage_options: dict = None,
storage_options: dict | None = None,
**kwargs
):
"""Performs a write of a pandas dataframe to a single parquet file, following the hipscat structure.
Expand Down

0 comments on commit 5abe1a7

Please sign in to comment.