1
Fork 0
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:
Steffo 2020-12-06 07:49:05 +01:00
parent 0fe80d794e
commit 6de180a27e
11 changed files with 16 additions and 16 deletions

View file

@ -12,4 +12,4 @@ It may be incomplete or outdated, as it is automatically updated.
campaigns campaigns
lazy lazy
scrolls scrolls
typing types

View file

@ -0,0 +1,7 @@
Types autodoc
=================
.. currentmodule:: royalnet.types
.. automodule:: royalnet.types
:members:
:undoc-members:

View file

@ -1,7 +0,0 @@
Typing autodoc
=================
.. currentmodule:: royalnet.typing
.. automodule:: royalnet.typing
:members:
:undoc-members:

View file

@ -1,4 +1,4 @@
from royalnet.typing import * from royalnet.types import *
import sqlalchemy.orm as o import sqlalchemy.orm as o

View file

@ -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

View file

@ -1,4 +1,4 @@
from royalnet.typing import * from royalnet.types import *
import abc import abc
__all__ = ( __all__ = (

View file

@ -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

View file

@ -1,4 +1,4 @@
from royalnet.typing import * from royalnet.types import *
import abc import abc
__all__ = ( __all__ = (

View file

@ -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")

View file

@ -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

View file

@ -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 *
""" """