"vscode:/vscode.git/clone" did not exist on "7cc35c31040d8bdfcadc274c087d6a73c2036210"
Unverified Commit 4ab5617b authored by Stas Bekman's avatar Stas Bekman Committed by GitHub
Browse files

comet_ml temporary fix(#8410)

parent e6d9cdaa
......@@ -14,7 +14,7 @@ try:
# Comet needs to be imported before any ML frameworks
import comet_ml # noqa: F401
if comet_ml.config.get_config("comet.api_key"):
if hasattr(comet_ml, "config") and comet_ml.config.get_config("comet.api_key"):
_has_comet = True
else:
if os.getenv("COMET_MODE", "").upper() != "DISABLED":
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment