Skip to content

Commit

Permalink
toml support for python 3.10 and below
Browse files Browse the repository at this point in the history
  • Loading branch information
jpulidojr committed Oct 31, 2024
1 parent dc634f6 commit 1a48365
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion dsi/plugins/file_reader.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,9 @@
from pandas import DataFrame, read_csv, concat
import re
import yaml
import tomllib
try: import tomllib
except ModuleNotFoundError: import pip._vendor.tomli as tomllib

# import ast

from dsi.plugins.metadata import StructuredMetadata
Expand Down

0 comments on commit 1a48365

Please sign in to comment.