Skip to content

Commit 6db3968

Browse files
committed
refactor(utils): Move cli utils module to cli package
1 parent c594851 commit 6db3968

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (c) 2023, INRIA
1+
# Copyright (c) 2023, Inria
22
# Copyright (c) 2023, University of Lille
33
# All rights reserved.
44
#

src/powerapi/cli/config_parser.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
SubgroupAlreadyExistException, SubgroupParserWithoutNameArgumentException, BadTypeException, \
4040
MissingArgumentException, SameLengthArgumentNamesException, InvalidPrefixException, RepeatedArgumentException, \
4141
SubgroupDoesNotExistException, AlreadyAddedSubgroupException
42-
from powerapi.utils.cli import find_longest_string_in_list, string_to_bool, to_lower_case_and_replace_separators, \
42+
from ._utils import find_longest_string_in_list, string_to_bool, to_lower_case_and_replace_separators, \
4343
get_longest_related_suffix
4444

4545

src/powerapi/cli/parsing_manager.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
from powerapi.exception import MissingArgumentException, BadTypeException, AlreadyAddedSubparserException, \
3838
UnknownArgException, MissingValueException, BadContextException, RepeatedArgumentException, \
3939
AlreadyAddedSubgroupException
40-
from powerapi.utils.cli import merge_dictionaries
40+
from ._utils import merge_dictionaries
4141

4242

4343
class BaseConfigParsingManagerInterface:

0 commit comments

Comments
 (0)