Typo in setup.py of exercise 4.2

There is a typo in setup.py of exercise 4.2.

    entry_points={
        'console_scripts': [
            'exercise42 = exercise42_pkg.exercise_42:main'
        ],
    },

should be

    entry_points={
        'console_scripts': [
            'exercise42 = exercise42_pkg.exercise42:main'
        ],
    },
1 Like

Thank you, the notebook has been updated.

This topic was automatically closed after 21 hours. New replies are no longer allowed.