Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
disable errant linter objection
  • Loading branch information
bryevdv committed Oct 28, 2019
commit cb752b02c6e995fa30502eb2ef45ff3d649d9fa4
2 changes: 1 addition & 1 deletion sdk/cosmos/azure-cosmos/azure/cosmos/cosmos_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ def __init__(self, url, credential, consistency_level="Session", **kwargs):
url, auth=auth, consistency_level=consistency_level, connection_policy=connection_policy, **kwargs
)

def __repr__(self):
def __repr__(self): # pylint:disable=client-method-name-no-double-underscore
# type () -> str
return "<CosmosClient [{}]>".format(self.client_connection.url_connection)[:1024]

Expand Down