mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-08-24 00:07:02 -04:00
notify-api-412 use black to enforce python coding style
This commit is contained in:
@@ -2,13 +2,12 @@ from app.notify_client import NotifyAdminAPIClient
|
||||
|
||||
|
||||
class ComplaintApiClient(NotifyAdminAPIClient):
|
||||
|
||||
def get_all_complaints(self, page=1):
|
||||
params = {'page': page}
|
||||
return self.get('/complaint', params=params)
|
||||
params = {"page": page}
|
||||
return self.get("/complaint", params=params)
|
||||
|
||||
def get_complaint_count(self, params_dict=None):
|
||||
return self.get('/complaint/count-by-date-range', params=params_dict)
|
||||
return self.get("/complaint/count-by-date-range", params=params_dict)
|
||||
|
||||
|
||||
complaint_api_client = ComplaintApiClient()
|
||||
|
||||
Reference in New Issue
Block a user