Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions packages/polywrap-client/polywrap_client/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -98,10 +98,10 @@ async def load_wrapper(
TryResolveUriOptions(uri=uri, resolution_context=resolution_context)
)

if result.is_ok is True and result.ok is None:
if result.is_ok() == True and result.ok is None:
# FIXME: add other info
return Err(RuntimeError(f'Error resolving URI "{uri.uri}"'))
if result.is_err is True:
if result.is_err() == True:
return Err(result.unwrap_err())

uri_package_or_wrapper = result.unwrap()
Expand Down
Empty file.
Loading