Minor linting improvements

I have now disabled W1203 globally, see comment in
pyproject.toml
This commit is contained in:
Richard Bowman 2021-04-27 11:17:11 +01:00
parent 90f5a755b1
commit a2ba95c1d3
4 changed files with 11 additions and 7 deletions

View file

@ -1,11 +1,8 @@
import logging
from typing import List, Tuple
from labthings import fields, find_component
from labthings.views import ActionView
from openflexure_microscope.utilities import axes_to_array
class MoveStageAPI(ActionView):
args = {

View file

@ -4,7 +4,7 @@ import logging
import sys
import time
from contextlib import contextmanager
from typing import Dict, List, Optional, Tuple, Type, Union, Sequence
from typing import Dict, List, Optional, Sequence, Tuple, Type, Union
import numpy as np