Skip to content

Commit

Permalink
version safe Literal
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 03386b9 commit b00e8e9
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 @@ -4,8 +4,12 @@
As of the Change Date specified in that file, in accordance with the Business Source License, use of this software will be governed by the Apache License, version 2.0.
"""

import sys
from typing import List, Tuple, Union
from typing_extensions import Literal
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 b00e8e9

Please sign in to comment.