Skip to content

Commit 8907b76

Browse files
Bug fix in predict.py
1 parent 5bf778f commit 8907b76

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

predict.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ def __init__(self: Self, env_file_path: str = None) -> None:
3535
"""
3636

3737
# If .env filepath is supplied, use it. Or else '.env' is used.
38-
env_file_path = env_file_path or ".env"
38+
# env_file_path = env_file_path or ".env"
3939
_config: dict = dotenv_values(env_file_path)
4040

4141
self.prediction_api: str = _config.get("DEFAULT_PREDICTION_API")

0 commit comments

Comments
 (0)