Skip to content

Commit cc140c5

Browse files
committed
#139 add docstring
1 parent d8a2a15 commit cc140c5

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

s3fs/core.py

+9-1
Original file line numberDiff line numberDiff line change
@@ -772,7 +772,15 @@ def put(self, filename, path, **kwargs):
772772
f2.write(data)
773773

774774
def mkdir(self, path, acl="", **kwargs):
775-
""" Make new bucket or empty key """
775+
""" Make new bucket or empty key
776+
777+
Parameters
778+
----------
779+
acl: str
780+
ACL to set when creating
781+
region_name : str
782+
region in which the bucket should be created
783+
"""
776784
acl = acl or self.s3_additional_kwargs.get('ACL', '')
777785
self.touch(path, acl=acl, **kwargs)
778786

0 commit comments

Comments
 (0)