Skip to content

Commit 3149195

Browse files
lizmeister321erikbern
authored andcommitted
dynamic demo fix (spotify#2300)
1 parent 57bf97e commit 3149195

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

examples/dynamic_requirements.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
import luigi
2222

2323

24-
class Config(luigi.Task):
24+
class Configuration(luigi.Task):
2525
seed = luigi.IntParameter()
2626

2727
def output(self):
@@ -78,7 +78,7 @@ def output(self):
7878

7979
def run(self):
8080
# This could be done using regular requires method
81-
config = self.clone(Config)
81+
config = self.clone(Configuration)
8282
yield config
8383

8484
with config.output().open() as f:

0 commit comments

Comments
 (0)