-
Notifications
You must be signed in to change notification settings - Fork 684
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
drop the dataclass part since its not needed
- Loading branch information
1 parent
0e9fbac
commit 932ac02
Showing
2 changed files
with
1 addition
and
12 deletions.
There are no files selected for viewing
3 changes: 0 additions & 3 deletions
3
Monika After Story/game/python-packages/mas/renpyspec/config.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,3 @@ | ||
|
||
from dataclasses import dataclass | ||
|
||
@dataclass() | ||
class Config(): | ||
gamedir: str |
10 changes: 1 addition & 9 deletions
10
Monika After Story/game/python-packages/mas/renpyspec/renpyspec.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,13 +1,5 @@ | ||
|
||
|
||
|
||
from dataclasses import dataclass | ||
|
||
from .config import Config | ||
|
||
@dataclass | ||
class Renpy(): | ||
config: Config | ||
|
||
|
||
|
||
config: Config |