Skip to content

Commit 26bf95c

Browse files
Merge pull request #477 from ChristianTremblay/develop
Develop
2 parents feebd1b + 33e2e3b commit 26bf95c

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

BAC0/core/utils/lookfordependency.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,8 @@ def influxdb_if_available():
5858
def pandas_if_available() -> tuple[bool, Type, ModuleType, ModuleType]:
5959
global _PANDAS
6060
if not check_dependencies(["pandas"]):
61-
return None
61+
_PANDAS = False
62+
return (_PANDAS, FakePandas, FakePandas.sql, FakePandas.Timestamp)
6263

6364
try:
6465
pd = import_module("pandas")

0 commit comments

Comments
 (0)