Skip to content

Commit fccf8f5

Browse files
committed
tsp_cli_client: Fix sonarlint about variable name
Rename this local variable to fix the warning about the name convention. Signed-off-by: Marco Miller <[email protected]>
1 parent 1171c46 commit fccf8f5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tsp_cli_client

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -126,8 +126,8 @@ def __get_tree(uuid, outputid, treetype):
126126
print("Tree had no model; retry?")
127127
sys.exit(1)
128128

129-
treeModel = TreeModel(tree.entries, tree.headers)
130-
treeModel.print()
129+
tree_model = TreeModel(tree.entries, tree.headers)
130+
tree_model.print()
131131
sys.exit(0)
132132
else:
133133
sys.exit(1)

0 commit comments

Comments
 (0)