From 3fa1caddc388872a235dcd0c5f08177401e2f643 Mon Sep 17 00:00:00 2001 From: Paulo Freitas <34652880+paulovitorweb@users.noreply.github.com> Date: Fri, 26 Aug 2022 00:17:51 -0300 Subject: [PATCH] fix: notifications (#3) --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 3c43dd8..04dd66f 100644 --- a/README.md +++ b/README.md @@ -111,7 +111,7 @@ fastapi-project 3. When package requires services or dependencies or constants from other packages - import them with explicit module name ```python from src.auth import constants as auth_constants -from src.notifictions import service as notification_service +from src.notifications import service as notification_service from src.posts.constants import ErrorCode as PostsErrorCode # in case we have Standard ErrorCode in constants module of each package ```