Skip to content

Commit

Permalink
generalimport change check_import to fake_module_check
Browse files Browse the repository at this point in the history
  • Loading branch information
Mandera committed Oct 15, 2022
1 parent 9472c8e commit 150b238
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions generalfile/optional_dependencies/path_spreadsheet.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

from generallibrary import deco_cache, typeChecker, get_rows, initBases
from generalfile.optional_dependencies._extension import _Extension
from generalimport import check_import
from generalimport import fake_module_check

import pandas as pd
import csv
Expand All @@ -13,7 +13,7 @@ class Path_Spreadsheet:
@deco_cache()
def spreadsheet(self):
""" Easy modify tsv and csv files. """
check_import(pd)
fake_module_check(pd)
return _Spreadsheet(self)


Expand Down

0 comments on commit 150b238

Please sign in to comment.