You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jul 14, 2023. It is now read-only.
Machine Learning Team is working on a new extension and they did a lot of manual code to use their own SDK. They have some import errors when using their own SDKs, but the current code in custom.py below will just ignore any ImportError and CLI will eventually throw an error like ModuleNotFoundError: No module named 'azure.ml'. This cost them a lot of effort finding the real issue.
It may be a good idea to only pass ImportError for the .manual.custom part.
from .generated.custom import * # noqa: F403
try:
from .manual.custom import * # noqa: F403
except ImportError:
pass
The text was updated successfully, but these errors were encountered:
Machine Learning Team is working on a new extension and they did a lot of manual code to use their own SDK. They have some import errors when using their own SDKs, but the current code in
custom.py
below will just ignore anyImportError
and CLI will eventually throw an error likeModuleNotFoundError: No module named 'azure.ml'
. This cost them a lot of effort finding the real issue.It may be a good idea to only pass
ImportError
for the.manual.custom
part.The text was updated successfully, but these errors were encountered: