diff --git a/pandas_ods_reader/main.py b/pandas_ods_reader/main.py index d4eb77a..b9a4dc6 100644 --- a/pandas_ods_reader/main.py +++ b/pandas_ods_reader/main.py @@ -1,4 +1,5 @@ """Imports an ods or fods file into a DataFrame object""" + from pathlib import Path from typing import Optional, List, Union diff --git a/pandas_ods_reader/utils.py b/pandas_ods_reader/utils.py index a3a5d60..23e5e4e 100644 --- a/pandas_ods_reader/utils.py +++ b/pandas_ods_reader/utils.py @@ -1,4 +1,5 @@ """Provides utility functions for the parser""" + import pandas as pd diff --git a/tests/test_read_ods.py b/tests/test_read_ods.py index af5df1e..a11fa19 100644 --- a/tests/test_read_ods.py +++ b/tests/test_read_ods.py @@ -1,4 +1,5 @@ """Tests for core read_ods function with different files""" + from pathlib import Path import pandas as pd