fix raise NotImplemented() complaints of latest flake8

This commit is contained in:
Peter Zhokhov
2018-10-24 09:57:57 -07:00
parent 583ba082a2
commit 88300ed54c

View File

@@ -18,11 +18,11 @@ class TfInput(object):
"""Return the tf variable(s) representing the possibly postprocessed value
of placeholder(s).
"""
raise NotImplemented()
raise NotImplementedError
def make_feed_dict(data):
"""Given data input it to the placeholder(s)."""
raise NotImplemented()
raise NotImplementedError
class PlaceholderTfInput(TfInput):