Skip to content

Commit

Permalink
update snapshot
Browse files Browse the repository at this point in the history
  • Loading branch information
sentilesdal committed Nov 16, 2023
1 parent bdee7a0 commit 69fdbf2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions snapshots/expected_overloading.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@ class OverloadedBalanceOfContractFunction(ContractFunction):
# super() call methods are generic, while our version adds values & types
# pylint: disable=arguments-differ# disable this warning when there is overloading
# pylint: disable=function-redefined
@multimethod

def __call__(self) -> "OverloadedBalanceOfContractFunction":
super().__call__()
return self

@multimethod

def __call__(self, who: str) -> "OverloadedBalanceOfContractFunction":
super().__call__(who)
return self
Expand Down

0 comments on commit 69fdbf2

Please sign in to comment.