We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c2286a9 commit d2baceeCopy full SHA for d2bacee
docs/examples/eggsample/eggsample/host.py
@@ -27,10 +27,10 @@ def main():
27
pluginmanager.add_hookspecs(hookspecs)
28
pluginmanager.load_setuptools_entrypoints("eggsample")
29
pluginmanager.register(lib)
30
- fm2000 = EggselentCook(pluginmanager.hook)
31
- fm2000.add_ingredients()
32
- fm2000.prepare_the_food()
33
- fm2000.serve_the_food()
+ cook = EggselentCook(pluginmanager.hook)
+ cook.add_ingredients()
+ cook.prepare_the_food()
+ cook.serve_the_food()
34
35
if __name__ == '__main__':
36
main()
0 commit comments