Fix naming according to rename

This commit is contained in:
hhh
2024-02-11 15:04:22 +02:00
parent e3049c8834
commit c42f58273d
4 changed files with 8 additions and 6 deletions

View File

@@ -1,4 +1,4 @@
from neko_demo_standard import DemoInterface
from neko_demo_std import DemoInterface
class RDemoInterface(DemoInterface):

View File

@@ -1,8 +1,8 @@
from neko_demo_standard.__internal.some_internal_logic_mixins import (
from neko_demo_std.__internal.some_internal_logic_mixins import (
FirstAbstractMixin,
SecondAbstractMixin
)
from neko_demo_standard.neko.types import SomeDemoClass
from neko_demo_std.neko.types import SomeDemoClass
class FirstMixin(FirstAbstractMixin):

View File

@@ -1,4 +1,4 @@
from neko_demo_standard.neko.types import SomeOtherDemoClass
from neko_demo_std.neko.types import SomeOtherDemoClass
class FirstMixin:

View File

@@ -7,8 +7,10 @@ readme = "README.md"
[tool.poetry.dependencies]
python = "^3.11"
neko-demo-standard = {git="https://github.com/nekomatad/neko-demo-standard.git"}
#neko-demo-standard = {path = "../neko-demo-standard", develop = true}
[tool.poetry.group.neko.dependencies]
neko-demo-std = {path = "../neko-demo-std", develop = true}
[build-system]