diff options
| author | Jules Laplace <julescarbon@gmail.com> | 2018-04-18 14:18:30 +0200 |
|---|---|---|
| committer | Jules Laplace <julescarbon@gmail.com> | 2018-04-18 14:18:30 +0200 |
| commit | dfda992e7f0966a2253a8ed4f3ed6c2b93baeaf0 (patch) | |
| tree | 92c6fdb04d655715e2c48e726be71394e380b50d /data/recursive_dataset.py | |
| parent | 11f22c1ac90f23831fb6c98e9336b70983b76dfb (diff) | |
k
Diffstat (limited to 'data/recursive_dataset.py')
| -rw-r--r-- | data/recursive_dataset.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/data/recursive_dataset.py b/data/recursive_dataset.py index 7d1db84..6d67f81 100644 --- a/data/recursive_dataset.py +++ b/data/recursive_dataset.py @@ -17,9 +17,9 @@ class NextImage(): im = NextImage() im.append('a') -im.get() +im.get(1) im.append('b') -im.get() +im.get(1) class RecursiveDataset(BaseDataset): def initialize(self, opt): |
