refactor: add type hints to function signatures across multiple files

This commit is contained in:
grillazz
2026-07-13 14:25:49 +02:00
parent 51f0cebabe
commit eb8acd7b7c
10 changed files with 27 additions and 15 deletions
+2 -2
View File
@@ -5,9 +5,9 @@ class Stuff(HttpUser):
wait_time = between(1, 3)
@task
def find_stuff(self):
def find_stuff(self) -> None:
self.client.get("/v1/stuff/string")
@task
def find_stuff_with_pool(self):
def find_stuff_with_pool(self) -> None:
self.client.get("/v1/stuff/pool/string")