Skip to content

Commit 5c2a915

Browse files
committed
chore(Worker): Formatting
1 parent 36485b3 commit 5c2a915

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

worker/jobs/pull/elife.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,10 @@ def pull_elife(source: dict, path: Optional[str] = None, **kwargs) -> Files:
3636
url = f"https://elifesciences.org/articles/{article}.xml"
3737
print(f"Fetching {url}", file=stderr)
3838
response = session.fetch_url(url)
39-
print(f"Received response {response.status_code} : {response.content[:500]}", file=stderr)
39+
print(
40+
f"Received response {response.status_code} : {response.content[:500]}",
41+
file=stderr,
42+
)
4043
tree = etree.parse(io.BytesIO(response.content))
4144
root = tree.getroot()
4245
xlinkns = "http://www.w3.org/1999/xlink"

0 commit comments

Comments
 (0)