File tree Expand file tree Collapse file tree 2 files changed +2
-3
lines changed
Expand file tree Collapse file tree 2 files changed +2
-3
lines changed Original file line number Diff line number Diff line change 55from contextlib import asynccontextmanager
66
77import click
8- import planet
98from planet import DataClient , Session
109
1110from .cmds import coro , translate_exceptions
@@ -31,7 +30,7 @@ async def data_client(ctx):
3130 help = 'Assign custom base Orders API URL.' )
3231def data (ctx , base_url ):
3332 '''Commands for interacting with the Orders API'''
34- ctx .obj ['AUTH' ] = planet . Auth . from_file ()
33+ ctx .obj ['AUTH' ] = None
3534 ctx .obj ['BASE_URL' ] = base_url
3635
3736
Original file line number Diff line number Diff line change @@ -45,7 +45,7 @@ async def orders_client(ctx):
4545 help = 'Assign custom base Orders API URL.' )
4646def orders (ctx , base_url ):
4747 '''Commands for interacting with the Orders API'''
48- ctx .obj ['AUTH' ] = planet . Auth . from_file ()
48+ ctx .obj ['AUTH' ] = None
4949 ctx .obj ['BASE_URL' ] = base_url
5050
5151
You can’t perform that action at this time.
0 commit comments