Skip to content

Commit

Permalink
fix formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
aminalaee committed Nov 11, 2023
1 parent e3775e0 commit 04999a3
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion sqladmin/application.py
Original file line number Diff line number Diff line change
Expand Up @@ -385,7 +385,9 @@ def __init__(
Mount("/statics", app=statics, name="statics"),
Route("/", endpoint=self.index, name="index"),
Route("/{identity}/list", endpoint=self.list, name="list"),
Route("/{identity}/details/{pk:path}", endpoint=self.details, name="details"),
Route(
"/{identity}/details/{pk:path}", endpoint=self.details, name="details"
),
Route(
"/{identity}/delete",
endpoint=self.delete,
Expand Down

0 comments on commit 04999a3

Please sign in to comment.