We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 99113d2 commit dbbe6a3Copy full SHA for dbbe6a3
api/issues_utils.py
@@ -42,13 +42,17 @@ def xml_issue(
42
if res["elems"]:
43
for e in res["elems"]:
44
if e["type"] == "R":
45
+ # fmt: off
46
e["object_josm_url"] = (
47
f"http://localhost:8111/import?url={remote_url_read}api/0.6/relation/{e['id']}/full"
48
)
49
+ # fmt: on
50
else:
51
52
53
f"http://localhost:8111/load_object?objects={e['type'].lower()}{e['id']}"
54
55
56
57
map_url = (
58
f"{website}/{lang}/map/"
@@ -363,7 +367,7 @@ def csv(
363
367
lambda a: (
364
368
usernames
365
369
if a == "username"
366
- else elems if a == "elems" else res[a]
370
+ else (elems if a == "elems" else res[a])
371
),
372
map(lambda y: hh.get(y, y), h),
373
0 commit comments