-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3 from offish/v0.0.3
fix circular import and restructure a bit
- Loading branch information
Showing
14 changed files
with
31,880 additions
and
4,691 deletions.
There are no files selected for viewing
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
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
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,7 +1,8 @@ | ||
__title__ = "tf2-data" | ||
__author__ = "offish" | ||
__version__ = "0.0.2" | ||
__version__ = "0.0.3" | ||
__license__ = "MIT" | ||
|
||
from .schema import Schema, SchemaItems, IEconItems, EFFECTS | ||
from .schema import Schema, SchemaItems, IEconItems | ||
from .static import * | ||
from .files import EFFECTS, SCHEMA_ITEMS, DEFINDEX_NAMES |
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 |
---|---|---|
@@ -0,0 +1,5 @@ | ||
from .utils import read_lib_json_file | ||
|
||
EFFECTS = read_lib_json_file("effects") | ||
SCHEMA_ITEMS = read_lib_json_file("schema_items") | ||
DEFINDEX_NAMES = read_lib_json_file("defindex_names") |
File renamed without changes.
Oops, something went wrong.