We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8f4e8cc commit c0b79e2Copy full SHA for c0b79e2
contract-tests/tests/test/amazon/botocore/botocore_test.py
@@ -50,6 +50,7 @@
50
51
52
# pylint: disable=too-many-public-methods
53
+# pylint: disable=too-many-lines
54
class BotocoreTest(ContractTestBase):
55
_local_stack: LocalStackContainer
56
@@ -938,7 +939,7 @@ def _assert_specific_attributes(
938
939
940
try:
941
is_valid_regex = self._is_valid_regex(value)
- except (StopIteration, RuntimeError, KeyError):
942
+ except (StopIteration, RuntimeError, KeyError) as e:
943
is_valid_regex = False
944
945
if is_valid_regex:
0 commit comments