Skip to content

Commit 16237ff

Browse files
committed
chore: fix mypy errs
1 parent 6c3413e commit 16237ff

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

brownie/typing.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -132,13 +132,13 @@ class VyperBuildJson(_ContractBuildJson):
132132
@final
133133
class SolidityDeploymentJson(SolidityBuildJson):
134134
address: ChecksumAddress
135-
alias: NotRequired[ContractName]
135+
alias: NotRequired[ContractName | None]
136136

137137

138138
@final
139139
class VyperDeploymentJson(VyperBuildJson):
140140
address: ChecksumAddress
141-
alias: NotRequired[ContractName]
141+
alias: NotRequired[ContractName | None]
142142

143143

144144
ContractDeploymentJson = SolidityDeploymentJson | VyperDeploymentJson

0 commit comments

Comments
 (0)