projects
/
pgwui_core
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
10f770e
)
Add the table as a mixin to the initial post
author
Karl O. Pinc
<kop@karlpinc.com>
Sun, 24 Jan 2021 05:49:55 +0000
(23:49 -0600)
committer
Karl O. Pinc
<kop@karlpinc.com>
Sun, 24 Jan 2021 05:49:55 +0000
(23:49 -0600)
src/pgwui_core/core.py
patch
|
blob
|
history
diff --git
a/src/pgwui_core/core.py
b/src/pgwui_core/core.py
index 9f51c20a60ca79516bd41fbbfd3783a870583001..b5ecd4da6a3567d840dc3587cdf96d7906b6ea99 100644
(file)
--- a/
src/pgwui_core/core.py
+++ b/
src/pgwui_core/core.py
@@
-101,10
+101,16
@@
class UploadNullFileInitialPost(UploadFileInitialPost):
@attr.s
-class UploadTableInitialPost
(UploadNullFileInitialPost
):
+class UploadTableInitialPost
Mixin(
):
table = attr.ib(default='')
+@attr.s
+class UploadTableInitialPost(UploadNullFileInitialPost,
+ UploadTableInitialPostMixin):
+ pass
+
+
# The wtforms that suck data out of the html.
class UserWTForm(Form):