--- a/eric6/DebugClients/Python/coverage/optional.py Sun Jan 17 13:53:08 2021 +0100 +++ b/eric6/DebugClients/Python/coverage/optional.py Mon Feb 01 10:38:16 2021 +0100 @@ -15,6 +15,14 @@ Bad:: # MyModule.py + import unsure + + def use_unsure(): + unsure.something() + +Also bad:: + + # MyModule.py from coverage.optional import unsure def use_unsure():