You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
That URL printed by the call to mouse.get_structure_info() is "quoted" for the purposes of making the actual API query, but should be "unquoted" for printing purposes since it's almost entirely unreadable by the average person! The whole point of printing the query URL is to make sure that it's formatted correctly, but I can't tell if it's formatted correctly if I can barely read the thing.
The issue
The following code snippet highlights the undesirable behavior:
That URL printed by the call to
mouse.get_structure_info()
is "quoted" for the purposes of making the actual API query, but should be "unquoted" for printing purposes since it's almost entirely unreadable by the average person! The whole point of printing the query URL is to make sure that it's formatted correctly, but I can't tell if it's formatted correctly if I can barely read the thing.Proposed solution
In
abagen.mouse.utils
, change L63 from:to
should do the trick! We only unquote for the purposes of printing the URL, but leave the actual URL quoted for the query.
The text was updated successfully, but these errors were encountered: