Skip to content

Commit 1808090

Browse files
committed
refactor: fix apostrophe placement
1 parent 3574914 commit 1808090

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

localstack/testing/aws/asf_utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ def check_provider_signature(sub_class: type, base_class: type, method_name: str
125125
base_spec = inspect.getfullargspec(base_function)
126126
assert sub_spec == base_spec, (
127127
f"{sub_class.__name__}#{method_name} breaks with {base_class.__name__}#{method_name}. "
128-
f"This can also be caused by 'from __future__ import annotations in a provider file'!"
128+
f"This can also be caused by 'from __future__ import annotations' in a provider file!"
129129
)
130130
except AttributeError:
131131
# the function is not defined in the superclass

0 commit comments

Comments
 (0)