Skip to content

Commit a7c3cf4

Browse files
authored
🐛 FIX: _Entities.__contains__ (#69)
1 parent 901c180 commit a7c3cf4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

markdown_it/common/entities.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ def __getitem__(self, name):
1515
return DATA[name]
1616

1717
def __contains__(self, name):
18-
name in DATA
18+
return name in DATA
1919

2020

2121
entities = _Entities()

0 commit comments

Comments
 (0)