We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
See discussion:
Would be cool to have some assertion for unused parameters to catch issues like this.
The text was updated successfully, but these errors were encountered:
def check_for_unused_kwargs(self): names = [n for n, _ in self.layers] + ['update'] for k in self._kwarg_keys: for n in names: prefix = '{}_'.format(n) if k.startswith(prefix): break else: print "Unused key: %s" % k
Sorry, something went wrong.
a07037b
Merge pull request #40 from dnouri/assertion-check-for-misspelled-par…
5ac7310
…ameters Fixes #17: Assertion Check for Misspelled Parameters
No branches or pull requests
See discussion:
The text was updated successfully, but these errors were encountered: