mirror of
https://github.com/GSA/notifications-api.git
synced 2026-02-01 07:35:34 -05:00
Fix **kwargs
This commit is contained in:
@@ -39,7 +39,7 @@ class MMGClient(SmsClient):
|
|||||||
'''
|
'''
|
||||||
|
|
||||||
def init_app(self, config, *args, **kwargs):
|
def init_app(self, config, *args, **kwargs):
|
||||||
super(SmsClient, self).__init__(*args, *kwargs)
|
super(SmsClient, self).__init__(*args, **kwargs)
|
||||||
self.api_key = config.get('MMG_API_KEY')
|
self.api_key = config.get('MMG_API_KEY')
|
||||||
self.from_number = config.get('MMG_FROM_NUMBER')
|
self.from_number = config.get('MMG_FROM_NUMBER')
|
||||||
self.name = 'MMG'
|
self.name = 'MMG'
|
||||||
|
|||||||
Reference in New Issue
Block a user