Skip to content

Commit

Permalink
fix(python): correct initialization instruction in README
Browse files Browse the repository at this point in the history
  • Loading branch information
adriantam committed Nov 10, 2023
1 parent 4cc5ac6 commit 0ae9bfa
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions config/clients/python/template/README_initializing.mustache
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ The documentation below refers to the `{{appShortName}}Client`, to read the docu

```python
import {{packageName}}
from {{packageName}}.client import OpenFgaClient
from {{packageName}}.client.client import OpenFgaClient


async def main():
Expand All @@ -27,7 +27,7 @@ async def main():

```python
import {{packageName}}
from {{packageName}}.client import OpenFgaClient
from {{packageName}}.client.client import OpenFgaClient
from {{packageName}}.credentials import Credentials, CredentialConfiguration


Expand Down Expand Up @@ -55,7 +55,7 @@ async def main():

```python
import {{packageName}}
from {{packageName}}.client import OpenFgaClient
from {{packageName}}.client.client import OpenFgaClient
from {{packageName}}.credentials import Credentials, CredentialConfiguration


Expand Down Expand Up @@ -90,7 +90,7 @@ without requiring async/await.

```python
import {{packageName}}
from {{packageName}}.sync.client import OpenFgaClient
from {{packageName}}.sync.client.client import OpenFgaClient


def main():
Expand Down

0 comments on commit 0ae9bfa

Please sign in to comment.