Skip to content

Commit 7eef90c

Browse files
committed
Propagate exit code
1 parent e90707e commit 7eef90c

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

tools/config_editor/app.py

+3
Original file line numberDiff line numberDiff line change
@@ -209,6 +209,9 @@ def main() -> None:
209209
# Main function to run the app
210210
app.run()
211211

212+
# Propagate the exit code from the app
213+
sys.exit(app.return_code or 0)
214+
212215
if __name__ == "__main__":
213216
# If this script is run directly, start the app
214217
main()

0 commit comments

Comments
 (0)