From d7e488852381d97077b5f6f9429adc769133777e Mon Sep 17 00:00:00 2001 From: Andreas Poehlmann Date: Mon, 1 Apr 2024 15:09:23 +0200 Subject: [PATCH] nox -s lint fixes --- upath/core.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/upath/core.py b/upath/core.py index 5d198429..bc9df82c 100644 --- a/upath/core.py +++ b/upath/core.py @@ -714,7 +714,11 @@ def name(self) -> str: # === pathlib.Path ================================================ - def stat(self, *, follow_symlinks=True) -> UPathStatResult: # type: ignore[override] + def stat( # type: ignore[override] + self, + *, + follow_symlinks=True, + ) -> UPathStatResult: if not follow_symlinks: warnings.warn( "UPath.stat(follow_symlinks=False): follow_symlinks=False is"