File tree Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change 1212# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1313# See the License for the specific language governing permissions and
1414# limitations under the License.
15+
1516from .data import DataClient
1617from .orders import OrdersClient
1718from .subscriptions import SubscriptionsClient
2324]
2425
2526# Organize client classes by their module name to allow concise lookup.
26- client_directory = {
27+ _client_directory = {
2728 'data' : DataClient ,
2829 'orders' : OrdersClient ,
2930 'subscriptions' : SubscriptionsClient
Original file line number Diff line number Diff line change @@ -431,10 +431,10 @@ def client(self,
431431
432432 """
433433 # To avoid circular dependency.
434- from planet .clients import client_directory
434+ from planet .clients import _client_directory
435435
436436 try :
437- return client_directory [name ](self , base_url = base_url )
437+ return _client_directory [name ](self , base_url = base_url )
438438 except KeyError :
439439 raise exceptions .ClientError ("No such client." )
440440
You can’t perform that action at this time.
0 commit comments