From 976c502415057f76a80f42de8831c9aba299eef0 Mon Sep 17 00:00:00 2001 From: guenhter Date: Thu, 23 Apr 2026 11:00:12 +0200 Subject: [PATCH] fix: justfile --- justfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/justfile b/justfile index fb98d70..d6a1695 100644 --- a/justfile +++ b/justfile @@ -9,7 +9,7 @@ install: # Start the development server start: - uv run uvicorn modai.main:app + uv run uvicorn llmock.app:app # Run tests test: @@ -21,6 +21,6 @@ check: uv run ruff check src # Fix code style and linting issues -check-write: +format: uv run ruff format src uv run ruff check --fix src