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
the parser is currently instantiated in vdb/upload.py. repeated imports from upload will, therefore, use the exact same parser and addition of arguments in other files generate argument clashes. code following this line
I don't think this is relevant anymore as it is described since it has been wrapped already.
Although, reading through vdb/download.py, It seems that it's doing a lot of parsing of the arguments. This probably could be extracted to a vdb/parser.py.
the parser is currently instantiated in
vdb/upload.py
. repeated imports fromupload
will, therefore, use the exact same parser and addition of arguments in other files generate argument clashes. code following this linehttps://github.com/nextstrain/fauna/blob/master/vdb/upload.py#L9
should be wrapped into a function
get_parser()
or similar.The text was updated successfully, but these errors were encountered: