Skip to content

Commit

Permalink
Fix type for ALLOWED_ATTRIBUTES (#35)
Browse files Browse the repository at this point in the history
  • Loading branch information
seanbudd authored Jan 12, 2024
1 parent cb14f51 commit 70b1cd0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nh3.pyi
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from typing import Callable, Dict, Optional, Set

ALLOWED_TAGS: Set[str]
ALLOWED_ATTRIBUTES: Set[str]
ALLOWED_ATTRIBUTES: Dict[str, Set[str]]

def clean(
html: str,
Expand Down

0 comments on commit 70b1cd0

Please sign in to comment.