Skip to content

Commit

Permalink
Fixed import method
Browse files Browse the repository at this point in the history
  • Loading branch information
nikhil25803 committed Feb 24, 2023
1 parent efac273 commit 4cdf1e7
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
1 change: 1 addition & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ python_requires = >=3.6
install_requires =
bs4
requests
requests-html

[options.packages.find]
where = src
10 changes: 6 additions & 4 deletions src/scrape_up/github/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
from github.users import Users
from github.respository import Repository
from github.issue import Issue
from scrape_up.github.users import Users
from scrape_up.github.respository import Repository
from scrape_up.github.issue import Issue
from scrape_up.github.organization import Organization
from scrape_up.github.pull_request import PullRequest

__all__ = ["Users", "Repository", "Issue"]
__all__ = ["Users", "Repository", "Issue","Organization","PullRequest"]

0 comments on commit 4cdf1e7

Please sign in to comment.