Skip to content

Commit

Permalink
Merge pull request #477 from ChristianTremblay/develop
Browse files Browse the repository at this point in the history
Develop
  • Loading branch information
ChristianTremblay committed Sep 17, 2024
2 parents feebd1b + 33e2e3b commit 26bf95c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion BAC0/core/utils/lookfordependency.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,8 @@ def influxdb_if_available():
def pandas_if_available() -> tuple[bool, Type, ModuleType, ModuleType]:
global _PANDAS
if not check_dependencies(["pandas"]):
return None
_PANDAS = False
return (_PANDAS, FakePandas, FakePandas.sql, FakePandas.Timestamp)

try:
pd = import_module("pandas")
Expand Down

0 comments on commit 26bf95c

Please sign in to comment.