File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -136,32 +136,32 @@ def _check_writable(self) -> None:
136
136
)
137
137
138
138
def read (self , size : int ) -> None :
139
- """.. ."""
139
+ """Read string from the file ."""
140
140
141
141
self ._unsupported ("read" )
142
142
143
143
def readline (self , limit : int ) -> None :
144
- """.. ."""
144
+ """Read line from the file ."""
145
145
146
146
self ._unsupported ("readline" )
147
147
148
148
def readlines (self , hint : int ) -> None :
149
- """.. ."""
149
+ """Read lines from the file ."""
150
150
151
151
self ._unsupported ("readlines" )
152
152
153
153
def write (self , * args : Any ) -> None :
154
- """.. ."""
154
+ """Write string to the file ."""
155
155
156
156
self ._unsupported ("write" )
157
157
158
158
def writelines (self , lines : Iterable [Any ]) -> None :
159
- """.. ."""
159
+ """Write lines to the file ."""
160
160
161
161
self ._unsupported ("writelines" )
162
162
163
163
def rotate (self ) -> None :
164
- """.. ."""
164
+ """Rotate file ."""
165
165
166
166
self ._unsupported ("rotate" )
167
167
You can’t perform that action at this time.
0 commit comments