ImperialCollegeLondon / FINESSE

A graphical user interface for controlling and monitoring an interferometer device
BSD 3-Clause "New" or "Revised" License
3 stars 1 forks source link

Fix mypy error in test #596

Closed alexdewar closed 6 months ago

alexdewar commented 6 months ago

It seems the latest version of mypy has noticed the trickery I was doing with this method and is complaining about it.

The body of the method is never actually executed -- we just need it because the parent class is abstract -- but let's replace it with something that mypy is happier.

alexdewar commented 6 months ago

Thanks!