-
Notifications
You must be signed in to change notification settings - Fork 310
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
fix for #104 large file support #105
Conversation
As I mentioned on #104 this does not do what you think it does. |
yeah it see it just delays the issue |
data_to_send = [] | ||
for key, value in data.items(): | ||
if isinstance(value, (list, tuple)): | ||
for item in value: |
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.
Why does this need to be added?
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.
otherwise classifiers (and any other list/tuple) was being picked up by this
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.
Okay. One other question, why is data_to_send a list instead of a dictionary?
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.
because currently the same key is sent as many times as it has values, so just to keep the same behavior
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.
👍
Travis isn't going to run the tests because this branch doesn't cleanly merge into master. Are you comfortable rebasing this branch on top of master? |
@a-tal I didn't mean that you should squash this into one commit. You need to rebase your commit onto master. |
No description provided.