Add a setter for BaseRequest.auth

This commit is contained in:
Garrett Holmstrom
2016-12-06 11:03:20 -08:00
parent 383a7d3908
commit b4ff33236d

View File

@@ -102,6 +102,10 @@ class BaseRequest(BaseCommand):
# pylint: enable=not-callable
return self.__auth
@auth.setter
def auth(self, newval):
self.__auth = newval
@property
def service(self):
if not self.__service and self.SERVICE_CLASS is not None: