mirror of https://github.com/django/django.git
Removed unnecessary assignment in Oracle's FormatStylePlaceholderCursor._fix_for_params().
Obsolete since fae56427e1
.
This commit is contained in:
parent
7724879b52
commit
6a793d1788
|
@ -472,7 +472,6 @@ class FormatStylePlaceholderCursor:
|
|||
query = query[:-1]
|
||||
if params is None:
|
||||
params = []
|
||||
query = query
|
||||
elif hasattr(params, 'keys'):
|
||||
# Handle params as dict
|
||||
args = {k: ":%s" % k for k in params}
|
||||
|
|
Loading…
Reference in New Issue