mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-08-20 22:40:31 -04:00
notify-api-412 use black to enforce python coding style
This commit is contained in:
@@ -2,14 +2,10 @@ from app.notify_client import NotifyAdminAPIClient
|
||||
|
||||
|
||||
class EventsApiClient(NotifyAdminAPIClient):
|
||||
|
||||
def create_event(self, event_type, event_data):
|
||||
data = {
|
||||
'event_type': event_type,
|
||||
'data': event_data
|
||||
}
|
||||
resp = self.post(url='/events', data=data)
|
||||
return resp['data']
|
||||
data = {"event_type": event_type, "data": event_data}
|
||||
resp = self.post(url="/events", data=data)
|
||||
return resp["data"]
|
||||
|
||||
|
||||
events_api_client = EventsApiClient()
|
||||
|
||||
Reference in New Issue
Block a user