ebird-api
ebird-api copied to clipboard
Fix issue 27
Fix issue #27 by changing regex from:
re.match(r"^[A-Z]{2}-[A-Z0-9]{2,3}-[A-Z0-9]{2,3}$", value)
to
re.match(r"^[A-Z]{2}-[A-Z0-9]{1,3}-[A-Z0-9]{2,3}$", value)
Closes #27