bluesky / databroker

Unified API pulling data from multiple sources
https://blueskyproject.io/databroker
BSD 3-Clause "New" or "Revised" License
33 stars 45 forks source link

Improve error message. #770

Closed danielballan closed 1 year ago

danielballan commented 1 year ago

If someone does

catalog["uid"]  # "uid" a literal string

where they meant

catalog[uid]  # uid a variable

the error message is

Partial uid uid is too short. It must include at least 5 characters.

We want

Partial uid 'uid' is too short. It must include at least 5 characters.