Skip to content

Commit

Permalink
fix: lint mypy issues!
Browse files Browse the repository at this point in the history
  • Loading branch information
amindadgar committed May 21, 2024
1 parent aa6c1be commit f7db9f8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tc_messageBroker/rabbit_mq/saga/saga_base.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ def next(
self,
publish_method: Callable,
call_function: Callable,
mongo_creds: dict[str, Any] = None,
mongo_creds: dict[str, Any] | None = None,
**kwargs,
):
"""
Expand Down
3 changes: 2 additions & 1 deletion tc_messageBroker/utils/credentials.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
from dotenv import load_dotenv
import os

from dotenv import load_dotenv


def load_mongo_credentials():
"""
Expand Down

0 comments on commit f7db9f8

Please sign in to comment.