From 46ebe53f7120df41fd68405a536a236cb7df2918 Mon Sep 17 00:00:00 2001 From: 0880 <98263509+0880880@users.noreply.github.com> Date: Sat, 17 Jan 2026 18:12:51 +0330 Subject: [PATCH] Update request to include app --- slow/slow.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/slow/slow.py b/slow/slow.py index 5a53485..a6a784d 100644 --- a/slow/slow.py +++ b/slow/slow.py @@ -38,11 +38,14 @@ class Headers: class Request: - def __init__(self, method: str, path: str, headers: Headers, body: bytes): + def __init__( + self, method: str, path: str, headers: Headers, body: bytes, app: "App" + ): self.method = method self.path = path self.headers = headers self.body = body + self.app = app def __str__(self): return str(