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
There is some difference between schemas in files and dict.
In particular, all \ in files should be double escaped, meaning we have this "^https?://www\\.realtor\\.ca/propertyDetails\\.aspx\\?PropertyId=[0-9]+$"
While python jsons can eat
"^https?://www.realtor.ca/propertyDetails.aspx?PropertyId=[0-9]+$`
To promote healthy psyche, I think it makes sense to find a way if it can be consistent.
The text was updated successfully, but these errors were encountered:
There is some difference between schemas in files and
dict
.In particular, all
\
in files should be double escaped, meaning we have this"^https?://www\\.realtor\\.ca/propertyDetails\\.aspx\\?PropertyId=[0-9]+$"
While python
jsons
can eat"^https?://www.realtor.ca/propertyDetails.aspx?PropertyId=[0-9]+$`
To promote healthy psyche, I think it makes sense to find a way if it can be consistent.
The text was updated successfully, but these errors were encountered: