Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(api): rename TouchTipParams -> LiquidClassTouchTipParams to avoid…
… name conflict (#16848) # Overview Liquid classes defined a new class `TouchTipParams` to configure the touch-tip settings for a liquid. But there's already an existing class called [`TouchTipParams`](../blob/edge/api/src/opentrons/protocol_engine/commands/touch_tip.py) that's used as the argument to the Protocol Engine `touchTip` command. When we generate the [command schema](../blob/edge/shared-data/command/schemas/11.json), both classes get pulled in, and the names clash. This PR renames the liquid class `TouchTipParams` to `LiquidClassTouchTipParams` to avoid the conflict. ## Test Plan and Hands on Testing I ran `make -C api test`, everything seems to pass. ## Risk assessment If this breaks anything, it should only affect our team for now.
- Loading branch information