Skip to content

Commit

Permalink
fixes linting issues
Browse files Browse the repository at this point in the history
  • Loading branch information
mikeshultz committed Mar 16, 2019
1 parent 488bebb commit 6dbe226
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
1 change: 0 additions & 1 deletion solidbyte/script/__init__.py
Expand Up @@ -4,7 +4,6 @@
from typing import Optional, Any, Dict, List
from attrdict import AttrDict
from importlib.util import spec_from_file_location, module_from_spec
from web3.eth import Contract as Web3Contract
from ..deploy import Deployer
from ..deploy.objects import Contract
from ..common.utils import Path, to_path
Expand Down
5 changes: 3 additions & 2 deletions tests/test_script.py
@@ -1,5 +1,4 @@
""" Tests for script command """
from web3.eth import Contract as Web3Contract
from solidbyte.common.web3 import web3c
from solidbyte.deploy import Deployer
from solidbyte.compile.compiler import Compiler
Expand Down Expand Up @@ -95,4 +94,6 @@ def test_script_failure(mock_project):
d.deploy()

assert run_script(NETWORK_NAME, str(test_script)) is False, "Script unexpectedly succeeded"
assert run_scripts(NETWORK_NAME, [str(test_script)]) is False, "Scripts unexpectedly succeeded"
assert run_scripts(NETWORK_NAME, [str(test_script)]) is False, (
"Scripts unexpectedly succeeded"
)

0 comments on commit 6dbe226

Please sign in to comment.