Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Georgi Rusev authored and Georgi Rusev committed Jan 9, 2025
1 parent f23a441 commit 3553540
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion python/arcticdb/util/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,11 @@
"""

from typing import List, Tuple, Union
from typing_extensions import Literal
import sys
if sys.version_info >= (3, 8):
from typing import Literal
else:
from typing_extensions import Literal
import numpy as np
import pandas as pd

Expand Down

0 comments on commit 3553540

Please sign in to comment.