Skip to content

Commit db78f38

Browse files
committed
Fix some of the linter issues
1 parent 12097da commit db78f38

File tree

4 files changed

+4
-5
lines changed

4 files changed

+4
-5
lines changed

src/onepassword/client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
from __future__ import annotations
44
import weakref
5-
from .core import Core, UniffiCore
5+
from .core import UniffiCore
66
from .desktop_core import DesktopCore
77
from .defaults import new_default_config, DesktopAuth
88
from .secrets import Secrets

src/onepassword/groups.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
# Code generated by op-codegen - DO NO EDIT MANUALLY
22

33
from .core import Core
4-
from typing import Optional, List
54
from pydantic import TypeAdapter
65
from .types import Group, GroupGetParams
76

src/onepassword/items.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Code generated by op-codegen - DO NO EDIT MANUALLY
22

33
from .core import Core
4-
from typing import Optional, List
4+
from typing import List
55
from pydantic import TypeAdapter
66
from .items_shares import ItemsShares
77
from .items_files import ItemsFiles

src/onepassword/items_files.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
# Code generated by op-codegen - DO NO EDIT MANUALLY
22

33
from .core import Core
4-
from typing import Optional, List
4+
from typing import List
55
from pydantic import TypeAdapter
66
from .types import DocumentCreateParams, FileAttributes, FileCreateParams, Item
77

88

99
class ItemsFiles:
10-
def __init__(self, client_id, core):
10+
def __init__(self, client_id, core: Core):
1111
self.client_id = client_id
1212
self.core = core
1313

0 commit comments

Comments
 (0)