mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2025-02-25 18:55:31 -06:00
Fixed SonarQube code smell Replace the unused local variable with '_'.
This commit is contained in:
@@ -1103,7 +1103,7 @@ def get_scenario_name(cases):
|
||||
for class_name, test_case_list in cases.items():
|
||||
result = {class_name: []}
|
||||
for case_name_dict in test_case_list:
|
||||
key, value = list(case_name_dict.items())[0]
|
||||
key, _ = list(case_name_dict.items())[0]
|
||||
class_names_dict = dict(
|
||||
(c_name, "") for scenario in result[class_name] for
|
||||
c_name in scenario.keys())
|
||||
|
||||
Reference in New Issue
Block a user