summaryrefslogtreecommitdiff
path: root/data
diff options
context:
space:
mode:
authorJules Laplace <julescarbon@gmail.com>2018-04-18 14:14:16 +0200
committerJules Laplace <julescarbon@gmail.com>2018-04-18 14:14:16 +0200
commit8d4354fbc674b3422e839168aad60a73fa919997 (patch)
tree3c4da25d26c22a436649dedb67bbb8c451dd9454 /data
parenta5d22180ce7d953b13372a65f93623434cdb3b74 (diff)
k
Diffstat (limited to 'data')
-rw-r--r--data/recursive_dataset.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/data/recursive_dataset.py b/data/recursive_dataset.py
index 75b2c04..b20b082 100644
--- a/data/recursive_dataset.py
+++ b/data/recursive_dataset.py
@@ -8,7 +8,9 @@ class NextImage():
self.next_image = "lol"
def append(self, path):
self.next_image = path
+ print("APPEND " + self.next_image)
def get(self):
+ print("GET " + self.next_image)
return self.next_image
im = NextImage()