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

View file

@ -1,5 +1,5 @@
from __future__ import annotations
from royalnet.typing import *
from royalnet.types import *
import logging
import inspect
import datetime

View file

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

View file

@ -1,5 +1,5 @@
from __future__ import annotations
from royalnet.typing import *
from royalnet.types import *
import logging
import inspect
import datetime

View file

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

View file

@ -1,5 +1,5 @@
from __future__ import annotations
from royalnet.typing import *
from royalnet.types import *
Result = TypeVar("Result")

View file

@ -4,7 +4,7 @@ from :data:`os.environ`.
"""
from __future__ import annotations
from royalnet.typing import *
from royalnet.types import *
import os
import re
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: ::
from royalnet.typing import *
from royalnet.types import *
"""