error[PLW1514]: `pathlib.Path(...).read_text` without explicit `encoding` argument
   --> .omo/evidence/nutricoach-v140-weekly-operations/task-12-candidate/snapshot/source/tests/gateway/test_nutrition_weekly_reminder_allocation_r10.py:125:18
    |
123 |     found: set[str] = set()
124 |     for relative in _SOURCES:
125 |         source = Path(relative).read_text()
    |                  ^^^^^^^^^^^^^^^^^^^^^^^^
126 |         tree = ast.parse(source)
127 |         for node in ast.walk(tree):
    |
help: Add explicit `encoding` argument

error[PLW1514]: `pathlib.Path(...).read_text` without explicit `encoding` argument
   --> .omo/evidence/nutricoach-v140-weekly-operations/task-12-candidate/snapshot/source/tests/gateway/test_nutrition_weekly_reminder_allocation_r10.py:170:27
    |
168 |                         and close.value.id in allocated
169 |                     )
170 |     resources = ast.parse(Path(_SOURCES[0]).read_text())
    |                           ^^^^^^^^^^^^^^^^^^^^^^^^^^^
171 |     open_fd = next(
172 |         node for node in ast.walk(resources)
    |
help: Add explicit `encoding` argument

Found 2 errors.
No fixes available (2 hidden fixes can be enabled with the `--unsafe-fixes` option).
