Skip to content

Commit

Permalink
Merge branch 'main' into neovim-docs
Browse files Browse the repository at this point in the history
  • Loading branch information
shivay-at-pieces authored Aug 25, 2024
2 parents b239fb4 + 005cf97 commit 022f1fd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/build/sdks/python/quickstart.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ To create a new asset, you can use the `create_asset` method of the Pieces Clien
```python
from pieces_os_client.wrapper import PiecesClient
from pieces_os_client import FragmentMetadata
from pieces_os_client import FragmentMetadata, ClassificationSpecificEnum
# Initialize the PiecesClient
pieces_client = PiecesClient()
Expand Down Expand Up @@ -91,7 +91,7 @@ pieces_client = PiecesClient()
# Get all assets and print their names
assets = pieces_client.assets()
for asset in assets:
logger.info(f"Asset Name: {asset.name}")
print(f"Asset Name: {asset.name}")
# Close the client
pieces_client.close()
Expand Down

0 comments on commit 022f1fd

Please sign in to comment.