Skip to content

Commit b2cf884

Browse files
refactor: Change dict() to literal {} (#1318)
1 parent 60fdec7 commit b2cf884

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bottle.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3906,7 +3906,7 @@ def __init__(self, lockfile, interval):
39063906
def run(self):
39073907
exists = os.path.exists
39083908
mtime = lambda p: os.stat(p).st_mtime
3909-
files = dict()
3909+
files = {}
39103910

39113911
for module in list(sys.modules.values()):
39123912
path = getattr(module, '__file__', '') or ''

0 commit comments

Comments
 (0)