Skip to content

Commit

Permalink
i miss cargo fmt.....
Browse files Browse the repository at this point in the history
  • Loading branch information
fjpacheco committed Apr 19, 2024
1 parent 9269198 commit 796dff3
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion app/main.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
from fastapi import FastAPI
from controller.Users import UsersController
from service.Users import UsersService
from repository.Users import UsersRepository
Expand Down
2 changes: 1 addition & 1 deletion app/service/Social.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ async def post(path: str, body: dict) -> Response:
@staticmethod
async def create_social_user(user_id: int):
try:
response = await SocialService.post(f"/social/users", body={"id": user_id})
response = await SocialService.post("/social/users", body={"id": user_id})
if response.status_code == 201:
return
else:
Expand Down

0 comments on commit 796dff3

Please sign in to comment.