mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2025-02-25 18:55:31 -06:00
Fixed following SonarQube issues:
- Remove this assignment to the local variable, the value is never used. - Rename local variables to match the regular expression - Add logic to this except clause or eliminate it and rethrow the exception automatically. - Rename fields to match the regular expression - Extract this nested conditional expression into an independent statement. - Change this default value to "None" and initialize this parameter inside the function/method. - Update this function so that its implementation is not identical to __repr__ - Refactor this method to not always return the same value - Reraise this exception to stop the application as the user expects - Add missing parameters _w _PY3. This method overrides simplejson.decoder.JSONDecoder.decode. - Remove this redundant continue. - Remove this unused function declaration - Remove this identity check; it will always be False.
This commit is contained in:
committed by
Akshay Joshi
parent
eb2c554601
commit
536593bf8a
@@ -492,7 +492,6 @@ def init_function(node_type, sid, did, scid, fid, trid=None):
|
||||
for pr_arg_mode in pro_arg_modes:
|
||||
if pr_arg_mode == 'o' or pr_arg_mode == 't':
|
||||
data['require_input'] = False
|
||||
continue
|
||||
else:
|
||||
data['require_input'] = True
|
||||
break
|
||||
@@ -2124,7 +2123,8 @@ def close_debugger_session(_trans_id, close_all=False):
|
||||
dbg_obj['exe_conn_id'],
|
||||
dbg_obj['database_id'])
|
||||
manager.release(conn_id=dbg_obj['exe_conn_id'])
|
||||
except Exception:
|
||||
raise
|
||||
finally:
|
||||
|
||||
de_inst.clear()
|
||||
except Exception:
|
||||
de_inst.clear()
|
||||
raise
|
||||
|
||||
Reference in New Issue
Block a user