mirror of
https://github.com/Code-For-Groningen/temmies.git
synced 2025-07-01 19:44:57 +02:00
Fixed slight bug with unused method
This commit is contained in:
@ -79,6 +79,6 @@ class Submission:
|
|||||||
def get_files(self) -> list[str] | None:
|
def get_files(self) -> list[str] | None:
|
||||||
"""Get a list of uploaded files in the format [(name, url)]"""
|
"""Get a list of uploaded files in the format [(name, url)]"""
|
||||||
if not self.__info:
|
if not self.__info:
|
||||||
self.__info = self.info()
|
self.__info = self.get_info()
|
||||||
|
|
||||||
return self.__info.get("files", None)
|
return self.__info.get("files", None)
|
||||||
|
Reference in New Issue
Block a user