diff options
| author | Jules Laplace <julescarbon@gmail.com> | 2018-04-18 14:14:16 +0200 |
|---|---|---|
| committer | Jules Laplace <julescarbon@gmail.com> | 2018-04-18 14:14:16 +0200 |
| commit | 8d4354fbc674b3422e839168aad60a73fa919997 (patch) | |
| tree | 3c4da25d26c22a436649dedb67bbb8c451dd9454 /data/recursive_dataset.py | |
| parent | a5d22180ce7d953b13372a65f93623434cdb3b74 (diff) | |
k
Diffstat (limited to 'data/recursive_dataset.py')
| -rw-r--r-- | data/recursive_dataset.py | 2 |
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() |
