From 4a598ceaea27b0386b6f1dac14350ecef4af4ff4 Mon Sep 17 00:00:00 2001 From: SergBobrovsky Date: Sat, 9 Jan 2021 17:01:03 +0300 Subject: [PATCH] change `dict()` to litrtal `{}` --- bottle.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bottle.py b/bottle.py index 23fff762..feab93af 100755 --- a/bottle.py +++ b/bottle.py @@ -3757,7 +3757,7 @@ def __init__(self, lockfile, interval): def run(self): exists = os.path.exists mtime = lambda p: os.stat(p).st_mtime - files = dict() + files = {} for module in list(sys.modules.values()): path = getattr(module, '__file__', '') or ''