Skip to content

Commit bea9927

Browse files
committed
Update generated files
1 parent 40b0d23 commit bea9927

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

apsw/__init__.pyi

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2898,14 +2898,14 @@ class TableChange:
28982898
name: str
28992899
""" Name of the affected table"""
29002900

2901-
new: tuple[SQLiteValue | typing.Literal[apsw.no_change], ...] | None
2901+
new: tuple[SQLiteValue | Literal[no_change], ...] | None
29022902
""":class:`None` if not applicable (like a DELETE). Otherwise a
29032903
tuple of the new values for the row, with :attr:`apsw.no_change`
29042904
if no value was provided for that column.
29052905
29062906
Calls: `sqlite3changeset_new <https://sqlite.org/session/sqlite3changeset_new.html>`__"""
29072907

2908-
old: tuple[SQLiteValue | typing.Literal[apsw.no_change], ...] | None
2908+
old: tuple[SQLiteValue | Literal[no_change], ...] | None
29092909
""":class:`None` if not applicable (like an INSERT). Otherwise a tuple
29102910
of the old values for the row before this change, with
29112911
:attr:`apsw.no_change` if no value was provided for that column,

src/apsw.docstrings

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3868,15 +3868,15 @@
38683868
"\n" \
38693869
" Name of the affected table\n"
38703870

3871-
#define TableChange_new_DOC ":type: tuple[SQLiteValue | typing.Literal[apsw.no_change], ...] | None\n" \
3871+
#define TableChange_new_DOC ":type: tuple[SQLiteValue | Literal[no_change], ...] | None\n" \
38723872
"\n" \
38733873
":class:`None` if not applicable (like a DELETE). Otherwise a\n" \
38743874
"tuple of the new values for the row, with :attr:`apsw.no_change`\n" \
38753875
"if no value was provided for that column.\n" \
38763876
"\n" \
38773877
"Calls: `sqlite3changeset_new <https://sqlite.org/session/sqlite3changeset_new.html>`__\n"
38783878

3879-
#define TableChange_old_DOC ":type: tuple[SQLiteValue | typing.Literal[apsw.no_change], ...] | None\n" \
3879+
#define TableChange_old_DOC ":type: tuple[SQLiteValue | Literal[no_change], ...] | None\n" \
38803880
"\n" \
38813881
":class:`None` if not applicable (like an INSERT). Otherwise a tuple\n" \
38823882
"of the old values for the row before this change, with\n" \

0 commit comments

Comments
 (0)