Skip to content

Commit

Permalink
5th iter
Browse files Browse the repository at this point in the history
  • Loading branch information
davidmrdavid committed Jan 12, 2024
1 parent b0dfd23 commit 8704914
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 1 addition & 2 deletions azure/functions/decorators/function_app.py
Original file line number Diff line number Diff line change
Expand Up @@ -267,7 +267,6 @@ def build(self, auth_level: Optional[AuthLevel] = None) -> Function:
self._validate_function(auth_level)
return self._function


class DecoratorApi(ABC):
"""Interface which contains essential decorator function building blocks
to extend for creating new function app or blueprint classes.
Expand Down Expand Up @@ -418,7 +417,7 @@ def decorator():
return decorator()

return wrap

def function_name(self, name: str,
setting_extra_fields: Dict[str, Any] = {},
) -> Callable[..., Any]:
Expand Down
2 changes: 1 addition & 1 deletion tests/decorators/test_function_app.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
TIMER_TRIGGER
from azure.functions.decorators.core import DataType, AuthLevel, \
BindingDirection, SCRIPT_FILE_NAME
from azure.functions.decorators.function_app import FunctionBuilder, \
from azure.functions.decorators.function_app import BindingApi, FunctionBuilder, \
FunctionApp, Function, Blueprint, DecoratorApi, AsgiFunctionApp, \
WsgiFunctionApp, HttpFunctionsAuthLevelMixin, FunctionRegister, \
TriggerApi, ExternalHttpFunctionApp
Expand Down

0 comments on commit 8704914

Please sign in to comment.