ebird-api icon indicating copy to clipboard operation
ebird-api copied to clipboard

Fix issue 27

Open marmg opened this issue 8 months ago • 0 comments

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

marmg avatar Jun 19 '25 12:06 marmg