Correct cerc_persistence autodocumentation
This commit is contained in:
parent
1df005ea8a
commit
344b685094
|
@ -236,6 +236,13 @@ class DBControl:
|
|||
def delete_application(self, application_uuid):
|
||||
"""
|
||||
Deletes a single application from the database
|
||||
:param application_uuid: the id of the application to get
|
||||
:param application_uuid: the id of the application to delete
|
||||
"""
|
||||
self._application.delete(application_uuid)
|
||||
|
||||
def get_city(self, city_id):
|
||||
"""
|
||||
Get a single city by id
|
||||
:param city_id: the id of the city to get
|
||||
"""
|
||||
return self._city.get_by_id(city_id)
|
||||
|
|
Loading…
Reference in New Issue
Block a user