providers/* use name for __str__

This commit is contained in:
Jens Langhammer
2020-07-05 23:00:40 +02:00
parent 26613b6ea9
commit 2402cfe29d
4 changed files with 4 additions and 4 deletions

View File

@ -37,7 +37,7 @@ class ApplicationGatewayProvider(Provider):
)
def __str__(self):
return f"Application Gateway {self.name}"
return self.name
class Meta: