Skip to content

Commit f6f6a40

Browse files
committed
lint
Signed-off-by: Filinto Duran <[email protected]>
1 parent b59de98 commit f6f6a40

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

durabletask/task.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
import math
88
from abc import ABC, abstractmethod
99
from datetime import datetime, timedelta
10-
from typing import Any, Callable, Generic, Generator, Optional, TypeVar, Union, cast
10+
from typing import Any, Callable, Generator, Generic, Optional, TypeVar, Union
1111

1212
import durabletask.internal.helpers as pbh
1313
import durabletask.internal.orchestrator_service_pb2 as pb
@@ -581,6 +581,7 @@ def non_retryable_error_types(self) -> Optional[set[str]]:
581581
"""
582582
return self._non_retryable_error_types
583583

584+
584585
def get_name(fn: Callable) -> str:
585586
"""Returns the name of the provided function"""
586587
name = fn.__name__

0 commit comments

Comments
 (0)