Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ENH: Use
getfullargspec
instead of deprecated getargspec
Use `getfullargspec` instead of deprecated `getargspec` to get the names and default values of function parameters. Fixes: ``` inspect. getargspec() is deprecated since Python 3.0, use inspect. signature() or inspect. getfullargspec() ``` reported by IDE inspection tool.
- Loading branch information