fix: update imports #3

Merged
usov_i merged 1 commits from fix-imports into master 2023-12-08 12:45:37 +01:00
3 changed files with 4 additions and 4 deletions
+2 -2
View File
@@ -1,5 +1,5 @@
from bec_client.scan_manager import ScanReport
from bec_utils.devicemanager import Device
from bec_lib.devicemanager import Device
from bec_lib.scan_report import ScanReport
# pylint:disable=undefined-variable
# pylint: disable=too-many-arguments
@@ -25,7 +25,7 @@ parse the --session argument, add the following lines to the script:
# pylint: disable=invalid-name, unused-import, import-error, undefined-variable, unused-variable, unused-argument, no-name-in-module
import argparse
from bec_lib.core import bec_logger
from bec_lib import bec_logger
logger = bec_logger.logger
@@ -8,7 +8,7 @@ To set up the BEC client configuration, use the ServiceConfig class. For example
to set the configuration file path, add the following lines to the script:
import pathlib
from bec_lib.core import ServiceConfig
from bec_lib import ServiceConfig
current_path = pathlib.Path(__file__).parent.resolve()
CONFIG_PATH = f"{current_path}/<path_to_my_config_file.yaml>"