minor - removed unnecessary dict calls

This commit is contained in:
Leonel Câmara
2014-08-05 18:32:32 +01:00
parent c9c054e72b
commit 59bbe7cddd
+4 -4
View File
@@ -939,7 +939,7 @@ class SQLFORM(FORM):
# - add translatable label for record ID
# - add third column to right of fields, populated from the col3 dict
widgets = Storage(dict(
widgets = Storage(
string=StringWidget,
text=TextWidget,
json=JSONWidget,
@@ -959,9 +959,9 @@ class SQLFORM(FORM):
checkboxes=CheckboxesWidget,
autocomplete=AutocompleteWidget,
list=ListWidget,
))
)
formstyles = Storage(dict(
formstyles = Storage(
table3cols=formstyle_table3cols,
table2cols=formstyle_table2cols,
divs=formstyle_divs,
@@ -969,7 +969,7 @@ class SQLFORM(FORM):
bootstrap=formstyle_bootstrap,
bootstrap3=formstyle_bootstrap3,
inline=formstyle_inline,
))
)
FIELDNAME_REQUEST_DELETE = 'delete_this_record'
FIELDKEY_DELETE_RECORD = 'delete_record'