Skip to content

Commit

Permalink
Merge pull request #12 from MaRDI4NFDI/deepsource-autofix-b453283c
Browse files Browse the repository at this point in the history
refactor: use literal syntax instead of function calls to create data structure
  • Loading branch information
physikerwelt authored Jan 7, 2024
2 parents b1c1941 + 44e309b commit a5e1a6b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/zbmath_rest2oai/getWithSwagger.py
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ def func_get_doc_to_xml(obj, xml):


if type(obj) is dict:
new_obj = dict()
new_obj = {}
for key_init in obj.keys():
if key_init in d.keys():
if key_init == '_code':
Expand Down

0 comments on commit a5e1a6b

Please sign in to comment.