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.
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
Read arguments #444
Read arguments #444
Changes from 30 commits
9d09ff9
e5458a1
24f6a42
b13b847
0779b80
1cfbf72
de61d87
9f06611
d019b9a
156ea89
b26ca4e
ce1ca76
fd00aeb
431af78
612662e
c16a003
7648078
4cfbfdb
f7f823b
203f3ad
10d1591
0b23d1e
6f5bead
035ee5a
903c351
d842bde
5e06de9
9ca29f1
e8e35ad
4bcc518
b2c2735
6b953f9
45704a4
2bf2808
1242881
5f8589a
e18cf7a
File filter
Filter by extension
Conversations
Jump to
There are no files selected for viewing
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.
Suggestion:
glob will not by default search all of the subdirectories for matching filepaths, but it has the ability to do so. If you would like to search recursively, you can achieve this by:
recursive=True
argument intoglob_kwargs
(shown below)/**/
in the filepath to match any level of nested folders (not shown below)Reply via ReviewNB
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.
I streamlined this explanation, like your comment suggests. Let me know if it still isn't clear!