File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ async def main():
1717
1818 # Connects to 1Password.
1919 client = await Client .authenticate (
20- auth = DesktopAuth ( "AndiTituTest" ) ,
20+ auth = token ,
2121 # Set the following to your own integration name and version.
2222 integration_name = "My 1Password Integration" ,
2323 integration_version = "v1.0.0" ,
Original file line number Diff line number Diff line change @@ -15,8 +15,8 @@ class Items:
1515 def __init__ (self , client_id , core ):
1616 self .client_id = client_id
1717 self .core = core
18- self .shares = ItemsShares (client_id )
19- self .files = ItemsFiles (client_id )
18+ self .shares = ItemsShares (client_id , core )
19+ self .files = ItemsFiles (client_id , core )
2020
2121 async def create (self , params : ItemCreateParams ) -> Item :
2222 """
You can’t perform that action at this time.
0 commit comments