Skip to content

Commit

Permalink
Merge branch 'develop' of github.com:ChristianTremblay/BAC0 into develop
Browse files Browse the repository at this point in the history
Signed-off-by: Christian Tremblay, ing. <[email protected]>
  • Loading branch information
ChristianTremblay committed Sep 20, 2024
2 parents 5326d44 + 33e2e3b commit 24cac0a
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 24cac0a

Please sign in to comment.