From 88300ed54c55d91cd0ba2954fcdfc7fd1c47929f Mon Sep 17 00:00:00 2001 From: Peter Zhokhov Date: Wed, 24 Oct 2018 09:57:57 -0700 Subject: [PATCH] fix raise NotImplemented() complaints of latest flake8 --- baselines/deepq/utils.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/baselines/deepq/utils.py b/baselines/deepq/utils.py index 0fb1569..5176f32 100644 --- a/baselines/deepq/utils.py +++ b/baselines/deepq/utils.py @@ -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):