You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Keeps support fo `_TYPER_STANDARD_TRACEBACK` but notes as deprecated
because:
- It is non-standard for an advertised env to start with an underscore.
- Environment variables that start with an underscore have been observed as
causing issues in some execution environments (e.g. with AWS Lambda).
See: #1284
Copy file name to clipboardExpand all lines: docs/tutorial/exceptions.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -235,14 +235,14 @@ TypeError: can only concatenate str (not "int") to str
235
235
236
236
</div>
237
237
238
-
You could also achieve the same with the environment variable `_TYPER_STANDARD_TRACEBACK=1`.
238
+
You could also achieve the same with the environment variable `TYPER_STANDARD_TRACEBACK=1` (or by setting the deprecated variable `_TYPER_STANDARD_TRACEBACK=1`).
239
239
240
240
This will work for any other Typer program too, in case you need to debug a problem in a Typer program made by someone else:
0 commit comments