-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Streetcover bug #258
Streetcover bug #258
Conversation
I am not sure about this ad-hoc solution. I'd suggest solving the issue at its source, i.e., add a new post-processing step for the street graph to ensure that lane's edge attribute is an int. |
Yep good suggestion - I'll look at next week |
@@ -136,6 +137,23 @@ def __call__( | |||
return G | |||
|
|||
|
|||
def sum_over_delimiter(s): |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This needs appropriate typing to include the case of the input not being a string, and update the docstring, accordingly. If it is not a string, what would it be? Output typing also needs updating.
this will require a bit more than I want to do in this PR so I will make a new issue |
Description
Found some oddly formatted
lanes
entries. This fixes it.TODO: