Save metadata to csv - #290
Merged
kollivier merged 21 commits intoOct 23, 2020
Merged
Conversation
kollivier
reviewed
Oct 8, 2020
kollivier
reviewed
Oct 8, 2020
kollivier
reviewed
Oct 8, 2020
kollivier
reviewed
Oct 8, 2020
kollivier
reviewed
Oct 8, 2020
kollivier
reviewed
Oct 8, 2020
kollivier
reviewed
Oct 8, 2020
kollivier
reviewed
Oct 8, 2020
kollivier
reviewed
Oct 12, 2020
kollivier
reviewed
Oct 12, 2020
kollivier
reviewed
Oct 12, 2020
kollivier
reviewed
Oct 12, 2020
kollivier
reviewed
Oct 12, 2020
kollivier
reviewed
Oct 19, 2020
| # if len(structure_list) < 1: | ||
| # structure_list = [current_level] | ||
| # else: | ||
| structure_list = list(structure_list) |
Contributor
There was a problem hiding this comment.
This line can be removed.
Contributor
Author
Contributor
There was a problem hiding this comment.
Ah, thanks, so it looks like what I read about list() as a function arg creating a new list each time was false. So let's make sure that any list or dict objects with default values default to None and that we set it when it is None the top of the function, like so:
if structure_list is None:
structure_list = []
Contributor
Author
There was a problem hiding this comment.
updated list to be named as branch_structure_list for now as it is keeping track of the structure of each branch. Can name it to something different in the future
kollivier
reviewed
Oct 19, 2020
kollivier
approved these changes
Oct 23, 2020
kollivier
left a comment
Contributor
There was a problem hiding this comment.
Thanks for all your hard work on this! LGTM! :)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
No description provided.