Skip to content

Commit

Permalink
Bugfix: missing coma so security declaration was not ok. (#901)
Browse files Browse the repository at this point in the history
  • Loading branch information
pinbe committed Oct 5, 2020
1 parent 31407b0 commit adb9caa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ZTUtils/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,6 @@
security = ModuleSecurityInfo('ZTUtils')

for name in ('encodeExpansion', 'decodeExpansion', 'a2b', 'b2a',
'Batch', 'TreeMaker', 'SimpleTreeMaker', 'LazyFilter'
'Batch', 'TreeMaker', 'SimpleTreeMaker', 'LazyFilter',
'url_query', 'make_query', 'make_hidden_input'):
security.declarePublic(name) # NOQA: D001

0 comments on commit adb9caa

Please sign in to comment.