docs(isinstance): add hint to use isinstance

This commit is contained in:
eslopfer 2023-01-30 13:45:05 +00:00
parent 78f854bc92
commit 3e7cd64c92
1 changed files with 4 additions and 0 deletions

View File

@ -53,8 +53,12 @@ Your function should generate this file `credentials.json`:
- Remember that the function should be able to search for the keys password and secret in nested json objects.
- Using the isinstance function could be useful to check if a value is for example a dict.
### References
- [json module](https://www.w3schools.com/python/python_json.asp)
- [os module](https://docs.python.org/3/library/os.html)
- [isinstance function](https://www.w3schools.com/python/ref_func_isinstance.asp)