Skip to content

Commit 1ca7496

Browse files
committed
fix mypy pass
1 parent 677668a commit 1ca7496

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

azure/functions/decorators/generic.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ class GenericInputBinding(InputBinding):
1010

1111
@staticmethod
1212
def get_binding_name():
13-
return None
13+
pass
1414

1515
def __init__(self,
1616
name: str,
@@ -24,7 +24,7 @@ class GenericOutputBinding(OutputBinding):
2424

2525
@staticmethod
2626
def get_binding_name():
27-
return None
27+
pass
2828

2929
def __init__(self,
3030
name: str,
@@ -38,7 +38,7 @@ class GenericTrigger(Trigger):
3838

3939
@staticmethod
4040
def get_binding_name():
41-
return None
41+
pass
4242

4343
def __init__(self,
4444
name: str,

0 commit comments

Comments
 (0)