Skip to content

Commit 5e67817

Browse files
fixes return type annotation.
1 parent 9996fdb commit 5e67817

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pythonanywhere_core/files.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ def path_delete(self, path: str) -> int:
116116
f"DELETE on {url} failed, got {result}{self._error_msg(result)}"
117117
)
118118

119-
def sharing_post(self, path: str) -> Tuple[int, str]:
119+
def sharing_post(self, path: str) -> Tuple[str, str]:
120120
"""Starts sharing a file at `path`.
121121
122122
Returns a tuple with a message and sharing link on

0 commit comments

Comments
 (0)