Skip to content

Commit

Permalink
change order of size multiplication (nit)
Browse files Browse the repository at this point in the history
  • Loading branch information
thomasf committed May 7, 2023
1 parent b4aa6da commit 177bb52
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion minio_storage/files.py
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ class ReadOnlySpooledTemporaryFile(MinioStorageFile, ReadOnlyMixin):
"""A django File class which buffers the minio object into a local
SpooledTemporaryFile."""

max_memory_size: int = 1024 * 1024 * 10
max_memory_size: int = 10 * 1024 * 1024

def __init__(
self,
Expand Down

0 comments on commit 177bb52

Please sign in to comment.