-
Notifications
You must be signed in to change notification settings - Fork 74
[SYNPY-1798]: updated black to 26.3.1 and reran pre-commit #1341
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 2 commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Large diffs are not rendered by default.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -12,6 +12,7 @@ | |
| 7. Delete wiki pages | ||
|
|
||
| """ | ||
|
|
||
| import os | ||
|
|
||
| from synapseclient import Synapse | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -479,13 +479,13 @@ async def download_by_file_handle( | |
|
|
||
| while retries > 0: | ||
| try: | ||
| file_handle_result: Dict[ | ||
| str, str | ||
| ] = await get_file_handle_for_download_async( | ||
| file_handle_id=file_handle_id, | ||
| synapse_id=synapse_id, | ||
| entity_type=entity_type, | ||
| synapse_client=syn, | ||
| file_handle_result: Dict[str, str] = ( | ||
| await get_file_handle_for_download_async( | ||
| file_handle_id=file_handle_id, | ||
| synapse_id=synapse_id, | ||
| entity_type=entity_type, | ||
|
Comment on lines
+482
to
+486
|
||
| synapse_client=syn, | ||
| ) | ||
| ) | ||
| file_handle = file_handle_result["fileHandle"] | ||
| concrete_type = file_handle["concreteType"] | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -5,6 +5,7 @@ | |
|
|
||
| sleep while checking registered _listeners | ||
| """ | ||
|
|
||
| import time | ||
|
|
||
| from opentelemetry import trace | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is going to cause the line numbers in the tutorial to be incorrect by 1 line.