@@ -219,7 +219,7 @@ def open(
219
219
flags : int ,
220
220
mode : Optional [int ] = None ,
221
221
* ,
222
- dir_fd : Optional [int ] = None
222
+ dir_fd : Optional [int ] = None ,
223
223
) -> int :
224
224
"""Return the file descriptor for a FakeFile.
225
225
@@ -538,7 +538,7 @@ def setxattr(
538
538
value : bytes ,
539
539
flags : int = 0 ,
540
540
* ,
541
- follow_symlinks : bool = True
541
+ follow_symlinks : bool = True ,
542
542
) -> None :
543
543
"""Sets the value of the given extended filesystem attribute for
544
544
`path`.
@@ -634,7 +634,7 @@ def stat(
634
634
path : AnyStr ,
635
635
* ,
636
636
dir_fd : Optional [int ] = None ,
637
- follow_symlinks : bool = True
637
+ follow_symlinks : bool = True ,
638
638
) -> FakeStatResult :
639
639
"""Return the os.stat-like tuple for the FakeFile object of entry_path.
640
640
@@ -712,7 +712,7 @@ def rename(
712
712
dst : AnyStr ,
713
713
* ,
714
714
src_dir_fd : Optional [int ] = None ,
715
- dst_dir_fd : Optional [int ] = None
715
+ dst_dir_fd : Optional [int ] = None ,
716
716
) -> None :
717
717
"""Rename a FakeFile object at old_file_path to new_file_path,
718
718
preserving all properties.
@@ -774,7 +774,7 @@ def replace(
774
774
dst : AnyStr ,
775
775
* ,
776
776
src_dir_fd : Optional [int ] = None ,
777
- dst_dir_fd : Optional [int ] = None
777
+ dst_dir_fd : Optional [int ] = None ,
778
778
) -> None :
779
779
"""Renames a FakeFile object at old_file_path to new_file_path,
780
780
preserving all properties.
@@ -957,7 +957,7 @@ def access(
957
957
* ,
958
958
dir_fd : Optional [int ] = None ,
959
959
effective_ids : bool = False ,
960
- follow_symlinks : bool = True
960
+ follow_symlinks : bool = True ,
961
961
) -> bool :
962
962
"""Check if a file exists and has the specified permissions.
963
963
@@ -995,7 +995,7 @@ def chmod(
995
995
mode : int ,
996
996
* ,
997
997
dir_fd : Optional [int ] = None ,
998
- follow_symlinks : bool = True
998
+ follow_symlinks : bool = True ,
999
999
) -> None :
1000
1000
"""Change the permissions of a file as encoded in integer mode.
1001
1001
@@ -1067,7 +1067,7 @@ def chown(
1067
1067
gid : int ,
1068
1068
* ,
1069
1069
dir_fd : Optional [int ] = None ,
1070
- follow_symlinks : bool = True
1070
+ follow_symlinks : bool = True ,
1071
1071
) -> None :
1072
1072
"""Set ownership of a faked file.
1073
1073
@@ -1102,7 +1102,7 @@ def mknod(
1102
1102
mode : Optional [int ] = None ,
1103
1103
device : int = 0 ,
1104
1104
* ,
1105
- dir_fd : Optional [int ] = None
1105
+ dir_fd : Optional [int ] = None ,
1106
1106
) -> None :
1107
1107
"""Create a filesystem node named 'filename'.
1108
1108
@@ -1153,7 +1153,7 @@ def symlink(
1153
1153
dst : AnyStr ,
1154
1154
target_is_directory : bool = False ,
1155
1155
* ,
1156
- dir_fd : Optional [int ] = None
1156
+ dir_fd : Optional [int ] = None ,
1157
1157
) -> None :
1158
1158
"""Creates the specified symlink, pointed at the specified link target.
1159
1159
@@ -1176,7 +1176,7 @@ def link(
1176
1176
dst : AnyStr ,
1177
1177
* ,
1178
1178
src_dir_fd : Optional [int ] = None ,
1179
- dst_dir_fd : Optional [int ] = None
1179
+ dst_dir_fd : Optional [int ] = None ,
1180
1180
) -> None :
1181
1181
"""Create a hard link at new_path, pointing at old_path.
1182
1182
0 commit comments