Skip to content

Commit d2bacee

Browse files
committed
fix class name
1 parent c2286a9 commit d2bacee

File tree

1 file changed

+4
-4
lines changed
  • docs/examples/eggsample/eggsample

1 file changed

+4
-4
lines changed

docs/examples/eggsample/eggsample/host.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,10 +27,10 @@ def main():
2727
pluginmanager.add_hookspecs(hookspecs)
2828
pluginmanager.load_setuptools_entrypoints("eggsample")
2929
pluginmanager.register(lib)
30-
fm2000 = EggselentCook(pluginmanager.hook)
31-
fm2000.add_ingredients()
32-
fm2000.prepare_the_food()
33-
fm2000.serve_the_food()
30+
cook = EggselentCook(pluginmanager.hook)
31+
cook.add_ingredients()
32+
cook.prepare_the_food()
33+
cook.serve_the_food()
3434

3535
if __name__ == '__main__':
3636
main()

0 commit comments

Comments
 (0)