Refactor(Github Repo): Update init file

- Remove imports of base, github_client and utils
- Add imports of GithubRepositoryReader and GithubClient
- Update __all__ to include the new imports
This commit is contained in:
ahmetkca 2023-02-13 01:18:12 -05:00
parent 1bf025dd31
commit 093fc689d7

View File

@ -1,8 +1,6 @@
"""Init file.""" """Init file."""
from . import base from .base import GithubRepositoryReader
from . import github_client from .github_client import GithubClient
from . import utils
# from .base import * __all__ = ["GithubRepositoryReader", "GithubClient"]
# from .github_client import *
# from .utils import *