mirror of
https://github.com/RYGhub/royalnet.git
synced 2024-11-22 19:14:20 +00:00
🐛 Rename royalnet.typing to royalnet.types
This commit is contained in:
parent
0fe80d794e
commit
6de180a27e
11 changed files with 16 additions and 16 deletions
|
@ -12,4 +12,4 @@ It may be incomplete or outdated, as it is automatically updated.
|
||||||
campaigns
|
campaigns
|
||||||
lazy
|
lazy
|
||||||
scrolls
|
scrolls
|
||||||
typing
|
types
|
||||||
|
|
7
docs/source/autodoc/types.rst
Normal file
7
docs/source/autodoc/types.rst
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
Types autodoc
|
||||||
|
=================
|
||||||
|
|
||||||
|
.. currentmodule:: royalnet.types
|
||||||
|
.. automodule:: royalnet.types
|
||||||
|
:members:
|
||||||
|
:undoc-members:
|
|
@ -1,7 +0,0 @@
|
||||||
Typing autodoc
|
|
||||||
=================
|
|
||||||
|
|
||||||
.. currentmodule:: royalnet.typing
|
|
||||||
.. automodule:: royalnet.typing
|
|
||||||
:members:
|
|
||||||
:undoc-members:
|
|
|
@ -1,4 +1,4 @@
|
||||||
from royalnet.typing import *
|
from royalnet.types import *
|
||||||
import sqlalchemy.orm as o
|
import sqlalchemy.orm as o
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
from __future__ import annotations
|
from __future__ import annotations
|
||||||
from royalnet.typing import *
|
from royalnet.types import *
|
||||||
import logging
|
import logging
|
||||||
import inspect
|
import inspect
|
||||||
import datetime
|
import datetime
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
from royalnet.typing import *
|
from royalnet.types import *
|
||||||
import abc
|
import abc
|
||||||
|
|
||||||
__all__ = (
|
__all__ = (
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
from __future__ import annotations
|
from __future__ import annotations
|
||||||
from royalnet.typing import *
|
from royalnet.types import *
|
||||||
import logging
|
import logging
|
||||||
import inspect
|
import inspect
|
||||||
import datetime
|
import datetime
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
from royalnet.typing import *
|
from royalnet.types import *
|
||||||
import abc
|
import abc
|
||||||
|
|
||||||
__all__ = (
|
__all__ = (
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
from __future__ import annotations
|
from __future__ import annotations
|
||||||
from royalnet.typing import *
|
from royalnet.types import *
|
||||||
|
|
||||||
|
|
||||||
Result = TypeVar("Result")
|
Result = TypeVar("Result")
|
||||||
|
|
|
@ -4,7 +4,7 @@ from :data:`os.environ`.
|
||||||
"""
|
"""
|
||||||
|
|
||||||
from __future__ import annotations
|
from __future__ import annotations
|
||||||
from royalnet.typing import *
|
from royalnet.types import *
|
||||||
import os
|
import os
|
||||||
import re
|
import re
|
||||||
import toml
|
import toml
|
||||||
|
|
|
@ -3,7 +3,7 @@ This module adds some new common types to the default typing package.
|
||||||
|
|
||||||
It should be imported with: ::
|
It should be imported with: ::
|
||||||
|
|
||||||
from royalnet.typing import *
|
from royalnet.types import *
|
||||||
|
|
||||||
"""
|
"""
|
||||||
|
|
Loading…
Reference in a new issue