Skip to content

Commit cc68a7d

Browse files
Thomas SmithFichteFoll
authored andcommitted
NOT_GIVEN should not be a dict (#49)
1 parent 04c41cf commit cc68a7d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

st3/sublime_lib/settings_dict.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ def ismapping(obj):
2222
return isinstance(obj, Mapping)
2323

2424

25-
NOT_GIVEN = {}
25+
NOT_GIVEN = object()
2626

2727

2828
class SettingsDict():

0 commit comments

Comments
 (0)