From 22ed410d843998dd3f9c25cb6fa2e587d72c902d Mon Sep 17 00:00:00 2001
From: vsyrgkanis <bsyrganis@gmail.com>
Date: Fri, 28 Jun 2024 10:44:21 -0700
Subject: [PATCH] Update python-package-conda.yml

---
 .github/workflows/python-package-conda.yml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/.github/workflows/python-package-conda.yml b/.github/workflows/python-package-conda.yml
index 4d81f9ab..fbc0be34 100644
--- a/.github/workflows/python-package-conda.yml
+++ b/.github/workflows/python-package-conda.yml
@@ -81,7 +81,7 @@ jobs:
     - name: Aggregate and report errors and warnings
       run: |
         echo "Aggregating errors and warnings..."
-        grep -E "Traceback|Error:|Exception:|ModuleNotFoundError|FutureWarning" logs/*.txt linting_logs/*.txt > logs/errors_and_warnings.txt || true
+        grep -E "Traceback|Error:|Exception:|ModuleNotFoundError|FutureWarning|TypeError" logs/*.txt linting_logs/*.txt > logs/errors_and_warnings.txt || true
         echo "Errors and Warnings:"
         cat logs/errors_and_warnings.txt
       shell: bash