This repository has been archived by the owner on May 4, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Trevor Phillips
committed
Nov 4, 2020
1 parent
cf82b93
commit c7109a0
Showing
11 changed files
with
7 additions
and
7 deletions.
There are no files selected for viewing
Empty file.
File renamed without changes.
2 changes: 1 addition & 1 deletion
2
blizzardapi/battlenet_oauth_api.py → blizzardapi/battlenet/battlenet_oauth_api.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
from urllib import parse | ||
|
||
from .api import Api | ||
from ..api import Api | ||
|
||
|
||
class BattlenetOauthApi(Api): | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
File renamed without changes.
2 changes: 1 addition & 1 deletion
2
blizzardapi/diablo3_game_data_api.py → blizzardapi/diablo3/diablo3_game_data_api.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
from .api import Api | ||
from ..api import Api | ||
|
||
|
||
class Diablo3GameDataApi(Api): | ||
|
Empty file.
File renamed without changes.
2 changes: 1 addition & 1 deletion
2
blizzardapi/wow_game_data_api.py → blizzardapi/wow/wow_game_data_api.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
from .api import Api | ||
from ..api import Api | ||
|
||
|
||
class WowGameDataApi(Api): | ||
|
2 changes: 1 addition & 1 deletion
2
blizzardapi/wow_profile_api.py → blizzardapi/wow/wow_profile_api.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
from .api import Api | ||
from ..api import Api | ||
|
||
|
||
class WowProfileApi(Api): | ||
|