Skip to content

Commit 41028c5

Browse files
committed
Change import order and add auto generated marker to client
1 parent c7807ce commit 41028c5

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

src/onepassword/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
# AUTO-GENERATED
22
from .client import Client
33
from .defaults import DEFAULT_INTEGRATION_NAME, DEFAULT_INTEGRATION_VERSION
4+
from .types import * # noqa F403
45
from .secrets import Secrets
56
from .items import Items
6-
from .types import * # noqa F403
77

88

99
__all__ = [

src/onepassword/client.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# AUTO-GENERATED
12
import weakref
23
from .core import _init_client, _release_client
34
from .defaults import new_default_config

0 commit comments

Comments
 (0)