Skip to content

Commit

Permalink
fix(docs): null ref
Browse files Browse the repository at this point in the history
  • Loading branch information
mikeshultz committed Feb 9, 2024
1 parent 39dbe1b commit 6a7a9f8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/userguides/contracts.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ To avoid naming collisions with other properties on the `project` object, you ca
```python
from ape import project

contract = property.get_contract("MyContract") # Same as `project.MyContract`.
contract = project.get_contract("MyContract") # Same as `project.MyContract`.
```

Notice when deploying, we have to specify the `sender=` kwarg because `deploy` operations are transactions.
Expand Down

0 comments on commit 6a7a9f8

Please sign in to comment.