From 3632953032f050609f71d6ff571aca846204ed9f Mon Sep 17 00:00:00 2001 From: The etils Authors Date: Fri, 22 May 2026 04:52:20 -0700 Subject: [PATCH] Update pyrefly ignore directives for glob PiperOrigin-RevId: 919607851 --- etils/epath/backend.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/etils/epath/backend.py b/etils/epath/backend.py index 2e2b8db..87f3898 100644 --- a/etils/epath/backend.py +++ b/etils/epath/backend.py @@ -143,7 +143,7 @@ def listdir(self, path: PathLike) -> list[str]: return [p for p in os.listdir(path) if not p.endswith('~')] def glob(self, path: PathLike) -> list[str]: - return glob_lib.glob(path) # pyrefly: ignore[bad-argument-type] + return glob_lib.glob(path) # pyrefly: ignore[bad-return, bad-specialization] def walk( self,