Skip to content

Commit

Permalink
make name required
Browse files Browse the repository at this point in the history
  • Loading branch information
orsinium committed May 1, 2020
1 parent 5fba65e commit 3d0b7c5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion deal/linter/_func.py
Expand Up @@ -20,7 +20,7 @@
class Func:
__slots__ = ('body', 'contracts', 'name')

def __init__(self, *, body: list, contracts: Iterable[Contract], name: str = None):
def __init__(self, *, body: list, contracts: Iterable[Contract], name: str):
self.body = body
self.contracts = contracts
self.name = name
Expand Down

0 comments on commit 3d0b7c5

Please sign in to comment.