Prechádzať zdrojové kódy

Update upload docstring (#848)

Elijah Ahianyo 2 rokov pred
rodič
commit
945ac53dd0
1 zmenil súbory, kde vykonal 3 pridanie a 1 odobranie
  1. 3 1
      pynecone/components/forms/upload.py

+ 3 - 1
pynecone/components/forms/upload.py

@@ -18,7 +18,9 @@ class Upload(Component):
 
 
     tag = "ReactDropzone"
     tag = "ReactDropzone"
 
 
-    # The list of accepted file types.
+    # The list of accepted file types. This should be a dictionary of MIME types as keys and array of file formats as
+    # values.
+    # supported MIME types: https://developer.mozilla.org/en-US/docs/Web/HTTP/Basics_of_HTTP/MIME_types/Common_types
     accept: Var[Optional[Dict[str, List]]]
     accept: Var[Optional[Dict[str, List]]]
 
 
     # Whether the dropzone is disabled.
     # Whether the dropzone is disabled.