From 62a9c76f18336ad6da243ef7eea1faafd8f16047 Mon Sep 17 00:00:00 2001 From: JongGyun Kim Date: Tue, 2 Apr 2019 07:49:25 +0900 Subject: [PATCH] fix the definition of `TfInput.make_feed_dict`. (#812) --- baselines/deepq/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/baselines/deepq/utils.py b/baselines/deepq/utils.py index 5176f32..2065073 100644 --- a/baselines/deepq/utils.py +++ b/baselines/deepq/utils.py @@ -20,7 +20,7 @@ class TfInput(object): """ raise NotImplementedError - def make_feed_dict(data): + def make_feed_dict(self, data): """Given data input it to the placeholder(s).""" raise NotImplementedError