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."""
from . import base
from . import github_client
from . import utils
# from .base import *
# from .github_client import *
# from .utils import *
from .base import GithubRepositoryReader
from .github_client import GithubClient
__all__ = ["GithubRepositoryReader", "GithubClient"]