Skip to content

Commit 9f0a8ef

Browse files
pre-commit-ci[bot]crcrpar
authored andcommitted
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent e5e7778 commit 9f0a8ef

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

thunder/core/jit_ext.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,9 @@ class JITSharpEdgeError(RuntimeError):
146146
def _general_jit_sharp_edge(desc: str, value: Any, /) -> Any | INTERPRETER_SIGNALS:
147147
sharp_edges: SHARP_EDGES_OPTIONS = get_jit_ctx().sharp_edges
148148

149-
s: str = f"{desc} This is currently considered a sharp edge even with interpretation=INTERPRETATION_OPTIONS.TRANSLATE_PYTHON. For cases in which we are overly strict, please file an issue. Thank you!"
149+
s: str = (
150+
f"{desc} This is currently considered a sharp edge even with interpretation=INTERPRETATION_OPTIONS.TRANSLATE_PYTHON. For cases in which we are overly strict, please file an issue. Thank you!"
151+
)
150152

151153
if sharp_edges is SHARP_EDGES_OPTIONS.ERROR:
152154
return do_raise(JITSharpEdgeError(s))

0 commit comments

Comments
 (0)