Skip to content

Commit b747390

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent 9bc2125 commit b747390

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/_pytest/capture.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@ def name(self) -> str:
177177
def mode(self) -> str:
178178
# TextIOWrapper doesn't expose a mode, but at least some of our
179179
# tests check it.
180-
return self.buffer.mode.replace("b", "") #type: ignore[no-any-return,attr-defined]
180+
return self.buffer.mode.replace("b", "") # type: ignore[no-any-return,attr-defined]
181181

182182

183183
class CaptureIO(io.TextIOWrapper):

0 commit comments

Comments
 (0)