Skip to content

Commit

Permalink
fix: lint (#141)
Browse files Browse the repository at this point in the history
  • Loading branch information
PatrickAlphaC authored Nov 5, 2024
1 parent 208ead2 commit 457e502
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 2 additions & 0 deletions tests/data/tests_project/script/deploy.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
from src import Counter

from moccasin.boa_tools import VyperContract

# from boa.contracts.vyper.vyper_contract import VyperContract

def deploy() -> VyperContract:
Expand Down
1 change: 1 addition & 0 deletions tests/data/tests_project/tests/conftest.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import pytest
from script.deploy import deploy


@pytest.fixture
def counter_contract():
return deploy()
7 changes: 2 additions & 5 deletions tests/data/tests_project/tests/test_fuzz_counter.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,6 @@
import boa
from hypothesis import assume, settings
from hypothesis import strategies as st
from hypothesis.stateful import RuleBasedStateMachine, initialize, invariant, rule
from boa.test.strategies import strategy

from hypothesis import assume, settings
from hypothesis.stateful import RuleBasedStateMachine, initialize, rule
from script.deploy import deploy

MAX_UINT256 = 2**256 - 1
Expand Down

0 comments on commit 457e502

Please sign in to comment.