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
I believe that the intended outcome based on the for in Line 359 is that the string is to be evaluated into a list of dictionaries.
I don't have an example where it would return more than one dictionary so I'm fixing it locally by replacing the line with:
Sorry you had to encounter this. Currently there is no one working on this project, and ultimately we wanted to switch from gnmi to json-rpc, the work has started in #56 but we got distracted with other priorities...
ERROR:root:Error occurred : invalid literal for int() with base 10: ''
The error seems to be occurring in Line 357
When debugging my code, that line is reached with the variable
local_as
having a value of:"{'as-number': 100, 'prepend-global-as': True, 'prepend-local-as': True}"
and after the execution of said line, the value of
local_as
becomes:I believe that the intended outcome based on the
for
in Line 359 is that the string is to be evaluated into a list of dictionaries.I don't have an example where it would return more than one dictionary so I'm fixing it locally by replacing the line with:
Which will produce the following outcome:
The text was updated successfully, but these errors were encountered: