koro 2.0.0rc1__tar.gz → 2.0.0rc3__tar.gz

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: koro
3
- Version: 2.0.0rc1
3
+ Version: 2.0.0rc3
4
4
  Summary: Tools for manipulating levels made in Marble Saga: Kororinpa
5
5
  Home-page: https://github.com/DigitalDetective47/koro
6
6
  Author: DigitalDetective47
@@ -1,6 +1,6 @@
1
1
  [metadata]
2
2
  name = koro
3
- version = 2.0.0rc1
3
+ version = 2.0.0rc3
4
4
  author = DigitalDetective47
5
5
  author_email = ninji2701@gmail.com
6
6
  description = Tools for manipulating levels made in Marble Saga: Kororinpa
@@ -0,0 +1,8 @@
1
+ from .slot import *
2
+ from .slot.bin import *
3
+ from .slot.file import *
4
+ from .slot.save import *
5
+ from .slot.xml import *
6
+ from .stage import *
7
+ from .stage.model import *
8
+ from .stage.part import *
@@ -1,13 +1,15 @@
1
1
  from abc import ABC, abstractmethod
2
2
  from os import remove
3
3
  from os.path import isfile
4
- from typing import TYPE_CHECKING
4
+ from typing import TYPE_CHECKING, Any
5
5
 
6
6
  from ..stage import Stage
7
7
  from . import Slot
8
8
 
9
9
  if TYPE_CHECKING:
10
10
  from _typeshed import StrOrBytesPath
11
+ else:
12
+ StrOrBytesPath = Any
11
13
 
12
14
 
13
15
  class FileSlot(Slot, ABC):
@@ -12,6 +12,8 @@ from .xml import XmlSlot
12
12
 
13
13
  if TYPE_CHECKING:
14
14
  from _typeshed import StrOrBytesPath
15
+ else:
16
+ StrOrBytesPath = Any
15
17
 
16
18
 
17
19
  __all__ = ["EditorPage", "get_slots", "SaveSlot"]