Skip to content

Commit f770655

Browse files
Use literal syntax instead of function calls to create data structure (#47)
Co-authored-by: deepsource-autofix[bot] <62050782+deepsource-autofix[bot]@users.noreply.github.com>
1 parent c1e4742 commit f770655

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

flask_shell2http/base_entrypoint.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ def __init_extension(self) -> None:
6565
For internal use only.
6666
"""
6767
if not hasattr(self.app, "extensions"):
68-
self.app.extensions = dict()
68+
self.app.extensions = {}
6969

7070
self.app.extensions["shell2http"] = self
7171

0 commit comments

Comments
 (0)