This Gist has been moved to https://github.com/lbgists/audio-spectrum-matplotlib.
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
| import inspect | |
| # Callable class to wrap functions | |
| class F: | |
| def __init__(self, func, *args): | |
| self.func = func | |
| self.args = args | |
| # Currying |