Skip to content

Commit 183407a

Browse files
authored
fix password endpoint router initialization order (#130)
1 parent 760c112 commit 183407a

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
from fastapi import APIRouter # pyright: reportUnusedImport=false
22

3-
from . import controller as controller # noqa: E402
4-
53
api = APIRouter()
4+
5+
from . import controller as controller # noqa: E402

0 commit comments

Comments
 (0)