Open AlrohfAZ opened 2 years ago
Don't you need () after if network.show_active
? Like this:
if network.show_active() != "development":
Don't you need () after
if network.show_active
? Like this:if network.show_active() != "development":
I just did that and it is still giving me the same error.
5:31:35 in the video, Typed the codes in exactly the same way and ran it but I keep getting this error TypeError: argument of type 'NoneType' is not iterable. This is the code; `from brownie import FundMe, MockV3Aggregator, network, config from scripts.helpful_scripts import get_account
def deploy_fund_me(): account = get_account()
pass the pricefeed address to our fund me contract
def main(): deploy_fund_me() `