From: Christian Heller <c.heller@plomlompom.de>
Date: Sat, 11 Jan 2025 07:02:29 +0000 (+0100)
Subject: More str case removal.
X-Git-Url: https://plomlompom.com/repos/%7B%7Bdb.prefix%7D%7D/%7B%7B%20web_path%20%7D%7D/static/%27%29;%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20chunks.push%28escapeHTML%28span%5B2%5D%29%29;%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20chunks.push%28%27?a=commitdiff_plain;h=1cb856c891fe1013b3c471df34bb9f400718edab;p=plomtask

More str case removal.
---

diff --git a/tests/days.py b/tests/days.py
index 3ac657f..e5a241f 100644
--- a/tests/days.py
+++ b/tests/days.py
@@ -143,7 +143,7 @@ class ExpectedGetDay(Expected):
         for prefix in ['en', 'dis']:
             blers = {}
             for cond_id in conds_present:
-                blers[str(cond_id)] = self.as_ids(
+                blers[cond_id] = self.as_ids(
                         [t for t in todos if cond_id in t[f'{prefix}ables']])
             self._fields[f'{prefix}ablers_for'] = blers
         self._fields['processes'] = self.as_ids(self.lib_all('Process'))
diff --git a/tests/utils.py b/tests/utils.py
index ce5f2e5..dd7dddc 100644
--- a/tests/utils.py
+++ b/tests/utils.py
@@ -574,7 +574,7 @@ class Expected:
         self._forced[field_name] = value
 
     @staticmethod
-    def as_ids(items: list[dict[str, Any]]) -> list[int] | list[str]:
+    def as_ids(items: list[dict[str, Any]]) -> list[int]:
         """Return list of only 'id' fields of items."""
         return [item['id'] for item in items]