From 6e036d38b27dd8c6eed1a9006bbc12734a4852b6 Mon Sep 17 00:00:00 2001 From: John Eismeier <42679190+jeis4wpi@users.noreply.github.com> Date: Mon, 27 Oct 2025 11:26:47 -0400 Subject: [PATCH] fix(infra): add emacs backup files to gitignore (#33675) --- .gitignore | 2 ++ libs/core/tests/unit_tests/runnables/test_fallbacks.py | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index a7be7f22261..16656d5b27f 100644 --- a/.gitignore +++ b/.gitignore @@ -1,6 +1,8 @@ .vs/ .claude/ .idea/ +#Emacs backup +*~ # Byte-compiled / optimized / DLL files __pycache__/ *.py[cod] diff --git a/libs/core/tests/unit_tests/runnables/test_fallbacks.py b/libs/core/tests/unit_tests/runnables/test_fallbacks.py index 0a6b82540e2..1d10887c725 100644 --- a/libs/core/tests/unit_tests/runnables/test_fallbacks.py +++ b/libs/core/tests/unit_tests/runnables/test_fallbacks.py @@ -266,7 +266,7 @@ def _error(msg: str) -> None: def _generate_immediate_error(_: Iterator) -> Iterator[str]: - _error("immmediate error") + _error("immediate error") yield ""