Skip to content

Commit 33b461a

Browse files
committed
fix docstrings
1 parent 6264431 commit 33b461a

2 files changed

Lines changed: 0 additions & 12 deletions

File tree

synapseclient/models/mixins/storable_container.py

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -571,11 +571,6 @@ async def main():
571571
572572
asyncio.run(main())
573573
```
574-
575-
Raises:
576-
ValueError: If required manifest columns are missing, paths are
577-
not unique, files are empty, or file names are invalid.
578-
IOError: If a file path in the manifest does not exist.
579574
"""
580575
from tqdm import tqdm
581576

synapseclient/models/protocols/storable_container_protocol.py

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -288,13 +288,6 @@ def sync_to_synapse(
288288
289289
project = Project(id="syn12345")
290290
uploaded = project.sync_to_synapse(manifest_path="/path/to/manifest.csv")
291-
for f in uploaded:
292-
print(f.id, f.name)
293291
```
294-
295-
Raises:
296-
ValueError: If required manifest columns are missing, paths are
297-
not unique, files are empty, or file names are invalid.
298-
IOError: If a file path in the manifest does not exist.
299292
"""
300293
return []

0 commit comments

Comments
 (0)