Correct cerc_persistence autodocumentation

This commit is contained in:
Guille 2024-05-24 11:28:43 +02:00
parent 1df005ea8a
commit 344b685094

View File

@ -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)