Skip to content

Commit

Permalink
style: fix import order in client and configuration file
Browse files Browse the repository at this point in the history
  • Loading branch information
tjtanjin committed Dec 29, 2023
1 parent addcb45 commit 89e02c1
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
8 changes: 4 additions & 4 deletions openfga_sdk/client/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,10 @@
NOTE: This file was auto generated by OpenAPI Generator (https://openapi-generator.tech). DO NOT EDIT.
"""

import asyncio
import uuid
from typing import List

from openfga_sdk.api_client import ApiClient
from openfga_sdk.api.open_fga_api import OpenFgaApi
from openfga_sdk.client.configuration import ClientConfiguration
Expand Down Expand Up @@ -40,10 +44,6 @@
from openfga_sdk.models.write_request import WriteRequest
from openfga_sdk.validation import is_well_formed_ulid_string

import asyncio
import uuid
from typing import List

CLIENT_METHOD_HEADER = "X-OpenFGA-Client-Method"
CLIENT_BULK_REQUEST_ID_HEADER = "X-OpenFGA-Client-Bulk-Request-Id"

Expand Down
5 changes: 3 additions & 2 deletions openfga_sdk/configuration.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,12 @@
import copy
import logging
import sys
import urllib3
from urllib.parse import urlparse

import urllib3
import six
from six.moves import http_client as httplib
from urllib.parse import urlparse

from openfga_sdk.exceptions import FgaValidationException, ApiValueError
from openfga_sdk.validation import is_well_formed_ulid_string

Expand Down

0 comments on commit 89e02c1

Please sign in to comment.