Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions src/validators/domain.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,11 @@


def _iana_tld():
"""Load IANA TLDs."""
"""Load IANA TLDs as a Generator."""
with Path(__file__).parent.joinpath("_tld.txt").open() as tld_f:
return (line.strip() for line in tld_f.readlines()[1:])
_ = next(tld_f) # ignore the first line
for line in tld_f:
yield line.strip()


@validator
Expand Down