Skip to content

Commit

Permalink
fix type hint
Browse files Browse the repository at this point in the history
  • Loading branch information
smcguire-cmu committed Apr 25, 2023
1 parent 97e1b1a commit 3485b69
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from typing import Union
from typing import Tuple, Union

import pandas as pd

Expand Down Expand Up @@ -59,7 +59,7 @@ def _get_partition_join_info_from_pixels(
@classmethod
def _read_args(
cls, catalog_base_dir: FilePointer
) -> tuple[CatalogInfoClass, JoinPixelInputTypes]:
) -> Tuple[CatalogInfoClass, JoinPixelInputTypes]:
args = super()._read_args(catalog_base_dir)
partition_join_info_file = paths.get_partition_join_info_pointer(catalog_base_dir)
partition_join_info = PartitionJoinInfo.read_from_file(partition_join_info_file)
Expand Down

0 comments on commit 3485b69

Please sign in to comment.