From 796dff3ac61fd14d35e96ac167fd13b774c9ef63 Mon Sep 17 00:00:00 2001 From: Federico Pacheco Date: Fri, 19 Apr 2024 02:49:11 -0300 Subject: [PATCH] i miss cargo fmt..... --- app/main.py | 1 - app/service/Social.py | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/app/main.py b/app/main.py index 094cb61..0cd3465 100644 --- a/app/main.py +++ b/app/main.py @@ -1,4 +1,3 @@ -from fastapi import FastAPI from controller.Users import UsersController from service.Users import UsersService from repository.Users import UsersRepository diff --git a/app/service/Social.py b/app/service/Social.py index 6b1db28..62a5830 100644 --- a/app/service/Social.py +++ b/app/service/Social.py @@ -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: