Changeset - 889dbcf38c50
[Not reviewed]
0 1 0
Ben Sturmfels (bsturmfels) - 2 years ago 2021-12-03 00:43:01
ben@sturm.com.au
Remove type annotation.
1 file changed with 1 insertions and 1 deletions:
0 comments (0 inline, 0 general)
www/conservancy/apps/ccs_upload/views.py
Show inline comments
...
 
@@ -34,5 +34,5 @@ def _handle_uploaded_file(f):
 
    logger.info('Wrote uploaded file to {}.'.format(path))
 

	
 

	
 
def _hash_prefixed_filename(name: str) -> str:
 
def _hash_prefixed_filename(name):
 
    return '{hash:x} {name}'.format(hash=random.getrandbits(32), name=name)
0 comments (0 inline, 0 general)