From 473dd68b3327951e0abb335f2dbcfab680ce2faf Mon Sep 17 00:00:00 2001 From: Toasterkitten Date: Mon, 22 Jun 2026 18:40:10 -0400 Subject: [PATCH] update justfile --- justfile | 5 ++++- untitled/app.py | 3 +++ 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/justfile b/justfile index bf69423..663d23c 100644 --- a/justfile +++ b/justfile @@ -6,5 +6,8 @@ lint: fmt: uv run ruff format + +typecheck: + uv run basedpyright -check: lint test \ No newline at end of file +check: lint test typecheck \ No newline at end of file diff --git a/untitled/app.py b/untitled/app.py index e69de29..3ab1605 100644 --- a/untitled/app.py +++ b/untitled/app.py @@ -0,0 +1,3 @@ +class App: + def __init__(self): + pass