Skip to content

Commit

Permalink
Make linting happy
Browse files Browse the repository at this point in the history
  • Loading branch information
noemifrisina committed Jul 12, 2024
1 parent 8ab409c commit ba5cc98
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/mx_bluesky/I24/serial/parameters/utils.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from typing import Dict
from typing import Any, Dict

from mx_bluesky.I24.serial.fixed_target.ft_utils import ChipType
from mx_bluesky.I24.serial.parameters.experiment_parameters import ChipDescription
Expand Down Expand Up @@ -31,5 +31,5 @@ def get_chip_format(chip_type: ChipType) -> ChipDescription:
defaults["y_step_size"] = float(caget(pv.me14e_gp99))
defaults["x_blocks"] = defaults["y_blocks"] = 1
defaults["b2b_horz"] = defaults["b2b_vert"] = 0.0
chip_params = {"chip_type": chip_type, **defaults} # type: ignore
chip_params: Dict[str, Any] = {"chip_type": chip_type, **defaults}
return ChipDescription(**chip_params)

0 comments on commit ba5cc98

Please sign in to comment.