server: rename moonraker.py to server.py
Signed-off-by: Eric Callahan <arksiine.code@gmail.com>
This commit is contained in:
parent
1e7be4598c
commit
a5d63db9a6
|
@ -48,7 +48,7 @@ from typing import (
|
||||||
)
|
)
|
||||||
if TYPE_CHECKING:
|
if TYPE_CHECKING:
|
||||||
from tornado.httpserver import HTTPServer
|
from tornado.httpserver import HTTPServer
|
||||||
from moonraker import Server
|
from server import Server
|
||||||
from eventloop import EventLoop
|
from eventloop import EventLoop
|
||||||
from confighelper import ConfigHelper
|
from confighelper import ConfigHelper
|
||||||
from klippy_connection import KlippyConnection as Klippy
|
from klippy_connection import KlippyConnection as Klippy
|
||||||
|
|
|
@ -27,7 +27,7 @@ from typing import (
|
||||||
Any
|
Any
|
||||||
)
|
)
|
||||||
if TYPE_CHECKING:
|
if TYPE_CHECKING:
|
||||||
from moonraker import Server
|
from server import Server
|
||||||
from confighelper import ConfigHelper
|
from confighelper import ConfigHelper
|
||||||
from io import BufferedWriter
|
from io import BufferedWriter
|
||||||
StrOrPath = Union[str, pathlib.Path]
|
StrOrPath = Union[str, pathlib.Path]
|
||||||
|
|
|
@ -17,7 +17,7 @@ from typing import (
|
||||||
)
|
)
|
||||||
|
|
||||||
if TYPE_CHECKING:
|
if TYPE_CHECKING:
|
||||||
from moonraker import Server
|
from server import Server
|
||||||
from confighelper import ConfigHelper
|
from confighelper import ConfigHelper
|
||||||
from .secrets import Secrets
|
from .secrets import Secrets
|
||||||
|
|
||||||
|
|
|
@ -37,7 +37,7 @@ from typing import (
|
||||||
cast
|
cast
|
||||||
)
|
)
|
||||||
if TYPE_CHECKING:
|
if TYPE_CHECKING:
|
||||||
from moonraker import Server
|
from server import Server
|
||||||
from confighelper import ConfigHelper
|
from confighelper import ConfigHelper
|
||||||
from websockets import WebRequest
|
from websockets import WebRequest
|
||||||
from klippy_connection import KlippyConnection
|
from klippy_connection import KlippyConnection
|
||||||
|
|
|
@ -20,7 +20,7 @@ from typing import (
|
||||||
)
|
)
|
||||||
|
|
||||||
if TYPE_CHECKING:
|
if TYPE_CHECKING:
|
||||||
from moonraker import Server
|
from server import Server
|
||||||
from confighelper import ConfigHelper
|
from confighelper import ConfigHelper
|
||||||
from websockets import WebRequest
|
from websockets import WebRequest
|
||||||
from .database import MoonrakerDatabase
|
from .database import MoonrakerDatabase
|
||||||
|
|
|
@ -34,7 +34,7 @@ from typing import (
|
||||||
Type,
|
Type,
|
||||||
)
|
)
|
||||||
if TYPE_CHECKING:
|
if TYPE_CHECKING:
|
||||||
from moonraker import Server
|
from server import Server
|
||||||
from components.gpio import GpioFactory, GpioOutputPin
|
from components.gpio import GpioFactory, GpioOutputPin
|
||||||
from components.template import TemplateFactory
|
from components.template import TemplateFactory
|
||||||
from io import TextIOWrapper
|
from io import TextIOWrapper
|
||||||
|
|
|
@ -30,7 +30,7 @@ from typing import (
|
||||||
List,
|
List,
|
||||||
)
|
)
|
||||||
if TYPE_CHECKING:
|
if TYPE_CHECKING:
|
||||||
from moonraker import Server
|
from server import Server
|
||||||
from app import APIDefinition
|
from app import APIDefinition
|
||||||
from klippy_connection import KlippyConnection as Klippy
|
from klippy_connection import KlippyConnection as Klippy
|
||||||
from .components.extensions import ExtensionManager
|
from .components.extensions import ExtensionManager
|
||||||
|
|
Loading…
Reference in New Issue