Skip to content

Commit

Permalink
[#2] refactor: src renamed, src->app
Browse files Browse the repository at this point in the history
  • Loading branch information
sudiptob2 committed Aug 15, 2022
1 parent d8e79af commit ac394ac
Show file tree
Hide file tree
Showing 10 changed files with 7 additions and 7 deletions.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import requests

from config.config import settings
from src.constant import Constant
from app.constant import Constant


class CFRequestHandler:
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from collections import defaultdict

from src.models.user import User
from src.utils.cf_request_handler import CFRequestHandler
from app.models.user import User
from app.utils.cf_request_handler import CFRequestHandler


class CFResponseParser:
Expand Down
4 changes: 2 additions & 2 deletions tests/test_utils/test_cf_parser.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
from src.models.user import User
from src.utils.cf_response_parser import CFResponseParser
from app.models.user import User
from app.utils.cf_response_parser import CFResponseParser


class TestCFParser:
Expand Down
4 changes: 2 additions & 2 deletions tests/test_utils/test_cf_request_handler.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import pytest

from src.constant import Constant
from src.utils.cf_request_handler import CFRequestHandler
from app.constant import Constant
from app.utils.cf_request_handler import CFRequestHandler


class TestCFReqHandler:
Expand Down

0 comments on commit ac394ac

Please sign in to comment.