sassoftware / python-sasctl

Imported name is not used anywhere in the module PY-W2000
Anti-pattern
Major
7 months ago2 years old
   5import ast
   6import importlib
   7import json
   8import math   9import pickle
  10import pickletools
  11import sys
Unused deprecated imported from utils.decorators
  21# Package Imports
  22from sasctl.pzmm.write_score_code import ScoreCode as sc
  23from ..core import current_session
  24from ..utils.decorators import deprecated, experimental  25from ..utils.misc import check_if_jupyter
  26
  27try:
Unused update_model_performance imported from tasks
38    put,
39    request_link,
40)
41from .tasks import publish_model, register_model, update_model_performance42
43# Ensure deprecation warnings are shown to users.
44warnings.filterwarnings("always", category=DeprecationWarning, module=r"^sasctl\.")
Unused register_model imported from tasks
38    put,
39    request_link,
40)
41from .tasks import publish_model, register_model, update_model_performance42
43# Ensure deprecation warnings are shown to users.
44warnings.filterwarnings("always", category=DeprecationWarning, module=r"^sasctl\.")
Unused publish_model imported from tasks
38    put,
39    request_link,
40)
41from .tasks import publish_model, register_model, update_model_performance42
43# Ensure deprecation warnings are shown to users.
44warnings.filterwarnings("always", category=DeprecationWarning, module=r"^sasctl\.")