diff --git a/arraycontext/context.py b/arraycontext/context.py
index 08597876ce07d2857b86ef904282fc062afa14b1..5afc942a3936e9355c2b5b7afd5df65e0c0cfd02 100644
--- a/arraycontext/context.py
+++ b/arraycontext/context.py
@@ -350,7 +350,7 @@ class ArrayContext(ABC):
             "setup-only" array context "leaks" into the application.
         """
 
-    def compile(self, f: Callable[[Any], Any]) -> Callable[..., Any]:
+    def compile(self, f: Callable[..., Any]) -> Callable[..., Any]:
         """Compiles *f* for repeated use on this array context. *f* is expected
         to be a `pure function <https://en.wikipedia.org/wiki/Pure_function>`__
         performing an array computation.