Skip to content

Commit 51b92ae

Browse files
committed
fix: lint
1 parent 1ba7b3d commit 51b92ae

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

example/execute-api-request/execute_api_request_example.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
import os
1414
import sys
1515

16+
1617
sdk_path = os.path.realpath(os.path.join(os.path.abspath(__file__), "..", "..", ".."))
1718
sys.path.insert(0, sdk_path)
1819

@@ -46,7 +47,6 @@ async def main():
4647
)
4748

4849
async with OpenFgaClient(configuration) as fga_client:
49-
5050
# ─── Setup: create a store, model, and tuple ─────────────
5151
print("=== Setup ===")
5252

@@ -151,7 +151,9 @@ async def main():
151151
print(f" ✅ id={body['id']}, name={body['name']}")
152152

153153
# ── 3. GET /stores/{store_id}/authorization-models ────────
154-
print("3. ReadAuthorizationModels (GET /stores/{store_id}/authorization-models)")
154+
print(
155+
"3. ReadAuthorizationModels (GET /stores/{store_id}/authorization-models)"
156+
)
155157
raw = await fga_client.execute_api_request(
156158
operation_name="ReadAuthorizationModels",
157159
method="GET",
@@ -267,5 +269,3 @@ async def main():
267269

268270

269271
asyncio.run(main())
270-
271-

0 commit comments

Comments
 (0)