Skip to content

Commit

Permalink
fix: lint
Browse files Browse the repository at this point in the history
  • Loading branch information
PatrickAlphaC committed Nov 22, 2024
1 parent a97f028 commit 761976a
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 5 deletions.
6 changes: 6 additions & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,12 @@ git commit -m 'your commit message'
git push <your_forked_github>
```

4. Run the linter

```bash
make lint
```

## Running Tests

Once you have your environment setup, you can run the tests to make sure everything is working as expected. You'll need to have your virtual environment activated to run the tests.
Expand Down
10 changes: 5 additions & 5 deletions tests/integration/network/anvil/test_network_env.py
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
import sqlite3
import tempfile
from pathlib import Path

import pytest
from hypothesis import given, settings

import boa
import boa.test.strategies as vy
from boa.deployments import DeploymentsDB, set_deployments_db
from boa.deployments import _CREATE_CMD, DeploymentsDB, set_deployments_db
from boa.network import NetworkEnv
from boa.rpc import to_bytes
from boa.util.abi import Address
import tempfile
from pathlib import Path
import sqlite3
from boa.deployments import _CREATE_CMD

code = """
totalSupply: public(uint256)
Expand Down

0 comments on commit 761976a

Please sign in to comment.