mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2025-02-25 18:55:31 -06:00
Fixed code smell 'variable shadows a builtin' reported by SonarQube.
This commit is contained in:
committed by
Akshay Joshi
parent
46ba0310fa
commit
a0893fe43b
@@ -565,8 +565,7 @@ def create_server(server):
|
||||
conn.commit()
|
||||
conn.close()
|
||||
|
||||
type = get_server_type(server)
|
||||
server['type'] = type
|
||||
server['type'] = get_server_type(server)
|
||||
# Add server info to parent_node_dict
|
||||
regression.parent_node_dict["server"].append(
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user