Skip to content

Commit f87d3b8

Browse files
basetunnelmkoura
authored andcommitted
Fix linting
1 parent f213101 commit f87d3b8

File tree

2 files changed

+3
-5
lines changed

2 files changed

+3
-5
lines changed

cardano_node_tests/tests/plutus_common.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -479,7 +479,6 @@ class PlutusScriptData:
479479

480480
SUCCEEDING_BATCH6_SCRIPT_FILES_V3 = (
481481
"succeedingDropListPolicyScript_V3_110.plutus",
482-
483482
"caseBoolHappy_V3_110.plutus",
484483
"caseIntegerHappy_V3_110.plutus",
485484
"caseListHappy_V3_110.plutus",
@@ -538,7 +537,6 @@ class PlutusScriptData:
538537
)
539538

540539

541-
542540
@dataclasses.dataclass(frozen=True, order=True)
543541
class PlutusOp:
544542
script_file: clusterlib.FileType

cardano_node_tests/tests/tests_plutus_v3/test_mint_build.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -183,9 +183,9 @@ def run_scenario(
183183
):
184184
return
185185
if outcome == Outcomes.ERROR and (
186-
"The machine terminated because of an error" in str_excp or
187-
"Script evaluation error" in str_excp
188-
):
186+
"The machine terminated because of an error" in str_excp
187+
or "Script evaluation error" in str_excp
188+
):
189189
return
190190
raise
191191

0 commit comments

Comments
 (0)