Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,4 @@ jobs:

- name: Run linter
run: |
ruff check src/ --output-format=github
ruff check app/ --output-format=github
59 changes: 0 additions & 59 deletions .github/workflows/release.yml

This file was deleted.

2 changes: 2 additions & 0 deletions app/api/routes/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
from . import templates, forms

__all__ = ["templates", "forms"]
2 changes: 1 addition & 1 deletion app/api/schemas/common.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
from pydantic import BaseModel
from typing import Any, Optional
from typing import Any

class SuccessResponse(BaseModel):
success: bool = True
Expand Down
1 change: 0 additions & 1 deletion tests/test_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
All heavy dependencies (LLM, commonforms, filesystem) are mocked via conftest.
"""

import pytest
from sqlmodel import select

from app.models import Template, FormSubmission
Expand Down