Skip to content

Commit f5d7985

Browse files
committed
-> str
1 parent dd432ea commit f5d7985

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/opengeodeweb_back/geode_functions.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ def get_data_info(data_id: str) -> Data:
7373
return data_entry
7474

7575

76-
def upload_file_path(filename):
76+
def upload_file_path(filename : str) -> str:
7777
upload_folder = flask.current_app.config["UPLOAD_FOLDER"]
7878
secure_filename = werkzeug.utils.secure_filename(filename)
7979
return os.path.abspath(os.path.join(upload_folder, secure_filename))

0 commit comments

Comments
 (0)