Skip to content

Commit 3f09d41

Browse files
committed
add missing doctrings
Signed-off-by: Akshay "XA" Mestry <[email protected]>
1 parent 07f7cda commit 3f09d41

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

hannah/_io.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -136,32 +136,32 @@ def _check_writable(self) -> None:
136136
)
137137

138138
def read(self, size: int) -> None:
139-
"""..."""
139+
"""Read string from the file."""
140140

141141
self._unsupported("read")
142142

143143
def readline(self, limit: int) -> None:
144-
"""..."""
144+
"""Read line from the file."""
145145

146146
self._unsupported("readline")
147147

148148
def readlines(self, hint: int) -> None:
149-
"""..."""
149+
"""Read lines from the file."""
150150

151151
self._unsupported("readlines")
152152

153153
def write(self, *args: Any) -> None:
154-
"""..."""
154+
"""Write string to the file."""
155155

156156
self._unsupported("write")
157157

158158
def writelines(self, lines: Iterable[Any]) -> None:
159-
"""..."""
159+
"""Write lines to the file."""
160160

161161
self._unsupported("writelines")
162162

163163
def rotate(self) -> None:
164-
"""..."""
164+
"""Rotate file."""
165165

166166
self._unsupported("rotate")
167167

0 commit comments

Comments
 (0)