reykit 1.1.92__py3-none-any.whl → 1.1.93__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
reykit/rschedule.py
CHANGED
@@ -23,12 +23,12 @@ from .rbase import Base, throw
|
|
23
23
|
|
24
24
|
|
25
25
|
__all__ = (
|
26
|
-
'
|
26
|
+
'DatabaseTableSchedule',
|
27
27
|
'Schedule'
|
28
28
|
)
|
29
29
|
|
30
30
|
|
31
|
-
class
|
31
|
+
class DatabaseTableSchedule(rorm.Model, table=True):
|
32
32
|
"""
|
33
33
|
Database `schedule` table model.
|
34
34
|
"""
|
@@ -108,7 +108,7 @@ class Schedule(Base):
|
|
108
108
|
self.db = db
|
109
109
|
|
110
110
|
|
111
|
-
def handle_build_db(self) -> tuple[list[type[
|
111
|
+
def handle_build_db(self) -> tuple[list[type[DatabaseTableSchedule]], list[dict[str, Any]]]:
|
112
112
|
"""
|
113
113
|
Handle method of check and build database tables, by `self.db_names`.
|
114
114
|
|
@@ -122,10 +122,10 @@ class Schedule(Base):
|
|
122
122
|
throw(ValueError, self.db)
|
123
123
|
|
124
124
|
# Set parameter.
|
125
|
-
TableSchedule._set_name(self.db_names['schedule'])
|
126
125
|
|
127
126
|
## Table.
|
128
|
-
|
127
|
+
DatabaseTableSchedule._set_name(self.db_names['schedule'])
|
128
|
+
tables = [DatabaseTableSchedule]
|
129
129
|
|
130
130
|
## View stats.
|
131
131
|
views_stats = [
|
@@ -11,7 +11,7 @@ reykit/rnum.py,sha256=jEhPQatAAaIV6kPx2tVtfjuK0F09UCWU6BjfPRamqBE,3620
|
|
11
11
|
reykit/ros.py,sha256=n9aqChdRQQFozOn_jXQns_UrKoEstCNRzFTgOBel4wM,47787
|
12
12
|
reykit/rrand.py,sha256=kh9yWOW8zaj8bUU0H0RL_GiOs2K8JDviVzKSoPLEuls,8566
|
13
13
|
reykit/rre.py,sha256=uqqved1_SWrJOQK-o5WYRoJf3JH0YpEktnxwA0x7TPU,6018
|
14
|
-
reykit/rschedule.py,sha256=
|
14
|
+
reykit/rschedule.py,sha256=uC70Cbr5_JB40FczIhal6pi6iEetKxfkmUWpSo4aFLU,13030
|
15
15
|
reykit/rstdout.py,sha256=bLN_kXsWpgTrCrBJNgaEE27DUk-ojsBV-9YJtWH41b4,8188
|
16
16
|
reykit/rsys.py,sha256=PEXUU_jyglEgIyN-URtnpUcrqKF5PFeAVAljEmaSqOs,24931
|
17
17
|
reykit/rtable.py,sha256=ItsycFuN-gb3gYhHuMx_nbAluGc8tAIMOyD5DHPS-lU,12173
|
@@ -22,7 +22,7 @@ reykit/rwrap.py,sha256=8MqbOjq56DbDKuTix75wYGXcAykzLiAPKrgl13Gk4xQ,15086
|
|
22
22
|
reykit/rzip.py,sha256=u-yyEFXY5iOysgzzqEbaaDTFfoHBj0L2sv5m4AQLt1c,3450
|
23
23
|
reykit/rdll/__init__.py,sha256=TEVZjiW9Y1_VxbZgIygcwmRp5xFHM2wLgwZccZ6gjng,698
|
24
24
|
reykit/rdll/rdll_core.py,sha256=o6-rKcTQgxZQe0kD3GnwyNb3KL9IogzgCQNOmYLMm7A,5086
|
25
|
-
reykit-1.1.
|
26
|
-
reykit-1.1.
|
27
|
-
reykit-1.1.
|
28
|
-
reykit-1.1.
|
25
|
+
reykit-1.1.93.dist-info/METADATA,sha256=6hNQpSK6gk7afZ-m76Gfxf0fWYHBnNuyVdNrVC5x8e8,1872
|
26
|
+
reykit-1.1.93.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
27
|
+
reykit-1.1.93.dist-info/licenses/LICENSE,sha256=UYLPqp7BvPiH8yEZduJqmmyEl6hlM3lKrFIefiD4rvk,1059
|
28
|
+
reykit-1.1.93.dist-info/RECORD,,
|
File without changes
|
File without changes
|