Merge pull request #232 from itsjoaoduque/patch-1

ATLAS-4815: fixed incorrect method name in EntityClient.remove_classification()
This commit is contained in:
Madhan Neethiraj 2023-11-29 19:51:37 -08:00 committed by GitHub
commit 5f38e92559
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -244,7 +244,7 @@ class EntityClient:
def remove_classification(self, entity_guid, classification_name, associated_entity_guid):
query = {'guid': entity_guid, 'classification_name': classification_name}
self.client.call_api(EntityClient.DELETE_CLASSIFICATION.formart_path(query), None, None, associated_entity_guid)
self.client.call_api(EntityClient.DELETE_CLASSIFICATION.format_path(query), None, None, associated_entity_guid)
def remove_classification_by_name(self, type_name, uniq_attributes, classification_name):
query_params = attributes_to_params(uniq_attributes)