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
Describe the bug
Supplying a links_file to generateNetwork raises a TypeError. The error is raised because on line 407 the wrong variable is given to the default_kwargs dictionary:
Ah, this issue here is that the user supplied links file is modified and written to the inputs directory. We need to pass the path to the new file in the default_kwargs dictionary. In your case, you are re-using the input one, which isn't always guaranteed to work given the remapping of file names.
Describe the bug
Supplying a links_file to
generateNetwork
raises aTypeError
. The error is raised because on line 407 the wrong variable is given to thedefault_kwargs
dictionary:To fix, I just changed
lf
tolinks_file
and it works:To Reproduce
Steps to reproduce the behavior:
Context
The text was updated successfully, but these errors were encountered: