Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

style: fix import order in client and configuration file #56

Merged
merged 1 commit into from
Jan 2, 2024
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
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