Skip to content

Commit

Permalink
fix mypy
Browse files Browse the repository at this point in the history
  • Loading branch information
PrettyWood committed Apr 5, 2021
1 parent cd8b645 commit 63fb064
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pydantic/networks.py
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ class AnyUrl(str):
allowed_schemes: Optional[Set[str]] = None
tld_required: bool = False
user_required: bool = False
hidden_parts: Optional[Set[str]] = None
hidden_parts: Set[str] = set()

__slots__ = ('scheme', 'user', 'password', 'host', 'tld', 'host_type', 'port', 'path', 'query', 'fragment')

Expand Down

0 comments on commit 63fb064

Please sign in to comment.