Skip to content

Commit

Permalink
fixed use of pipe operator.
Browse files Browse the repository at this point in the history
  • Loading branch information
djcowley committed Oct 4, 2023
1 parent 6fb3dd8 commit a088531
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from typing import Optional
from typing import Optional, Any
from unittest.mock import Mock, patch

import pytest
Expand Down Expand Up @@ -233,8 +233,8 @@ def test_coerce_slot_value(
self,
slot_name: str,
slot: Slot,
slot_value: Optional[str | int | float | bool],
expected_output: Optional[str | int | float | bool],
slot_value: Any,
expected_output: Any,
):
"""Test that coerce_slot_value coerces the slot value correctly."""
# Given
Expand Down

0 comments on commit a088531

Please sign in to comment.