Skip to content

Commit

Permalink
Clean up dict initialization to use {}
Browse files Browse the repository at this point in the history
  • Loading branch information
Trevor Riles committed Aug 9, 2024
1 parent b675d0e commit 0a4004c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion baseplate/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ def __init__(
self.__prefix = prefix
self.__wrapped = wrapped
if kv is None:
self.kv = dict()
self.kv = {}
else:
self.kv = kv

Expand Down

0 comments on commit 0a4004c

Please sign in to comment.