Skip to content

Commit

Permalink
chore: ruff lint
Browse files Browse the repository at this point in the history
  • Loading branch information
kraanzu committed Nov 25, 2024
1 parent 5e287c7 commit 8583461
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dooit/api/todo.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
from typing import List
from sqlalchemy import ForeignKey, select, nulls_last
from sqlalchemy.orm import Mapped, mapped_column, relationship, validates
from .model import DooitModel, generate_unique_id
from .model import DooitModel
from .manager import manager


Expand Down
2 changes: 1 addition & 1 deletion dooit/api/workspace.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
from sqlalchemy import ForeignKey, asc, select
from sqlalchemy.orm import Mapped, mapped_column, relationship
from ..api.todo import Todo
from .model import DooitModel, generate_unique_id
from .model import DooitModel
from .manager import manager

ModelType = Union["Workspace", "Todo"]
Expand Down

0 comments on commit 8583461

Please sign in to comment.