Skip to content

Commit 2231cec

Browse files
committed
lint fix
1 parent 3c37ef7 commit 2231cec

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

contract-tests/tests/test/amazon/botocore/botocore_test.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -929,14 +929,14 @@ def _assert_semantic_conventions_attributes(
929929
# self._assert_str_attribute(attributes_dict, SpanAttributes.PEER_SERVICE, "backend:8080")
930930
for key, value in request_specific_attributes.items():
931931
self._assert_attribute(attributes_dict, key, value)
932-
932+
933933
for key, value in response_specific_attributes.items():
934934
self._assert_attribute(attributes_dict, key, value)
935935

936936
def _assert_attribute(self, attributes_dict: Dict[str, AnyValue], key, value) -> None:
937937
if isinstance(value, str):
938938
if self._is_valid_regex(value):
939-
self._assert_match_attribute(attributes_dict, key, value)
939+
self._assert_match_attribute(attributes_dict, key, value)
940940
else:
941941
self._assert_str_attribute(attributes_dict, key, value)
942942
elif isinstance(value, int):

0 commit comments

Comments
 (0)