You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm trying out Kiota to generate a Python client for an Azure service, Azure Load Test. I've built Kiota from source (main branch, HEAD is 2f36c65), and then generated mostly following the directions here.
But Python throws an IndentationError when I try to import the generated client:
>>> from client.load_test_client import LoadTestClient
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "/Users/mikekistler/Projects/mikekistler/kiota/bug/client/load_test_client.py", line 22
"""
^
IndentationError: expected an indented block after class definition on line 21
And load_test_client.py is not the only file with indentation errors ... there are a bunch:
I'm trying out Kiota to generate a Python client for an Azure service, Azure Load Test. I've built Kiota from source (main branch, HEAD is 2f36c65), and then generated mostly following the directions here.
But Python throws an
IndentationError
when I try to import the generated client:And
load_test_client.py
is not the only file with indentation errors ... there are a bunch:Here's how I built the client:
The text was updated successfully, but these errors were encountered: