Update "python_file_names" function to have "recursive" boolean argument #30
Labels
enhancement
New feature or request
time est: 1 hour
We estimate this issue will take 1 hour to complete
I don't have time right now to scope this out entirely, but I would like to create a
python_files
function that lets a user find python files in a given directory. The function should be very similar to thepython_file_names
function and should take arecursive
kwarg as well as areturn_file_paths
kwarg which determines whether file names or file paths are returned.In the future, I can update this issue to have the text below:
HELP WANTED 👋 : If you'd like to take this challenge on, please let me know! Even if you're new to Python and/or Github, this is a great place to start and I'd be happy to help walk you through this challenge as much as you need - don't hesitate to ask.
This particular issue will give you some exposure to updating a function's arguments, using type hints in Python, and the Pathlib library.
What?
We should update the
python_file_names
function to have a booleanrecursive
argument that lets the user specify whether or not he/she would like to search for Python files in the given directory recursively or not. The function signature is currently:but should be updated to:
Why?
How?
Additional thoughts
The text was updated successfully, but these errors were encountered: