## Problem `test_client.py` lines 63 and 77 use `open(str(f))` where `f` is a `Path` object. Since Python 3.6, `open()` accepts `Path` objects directly. ## Solution - Replace `open(str(f))` with `open(f)` in `test_get_host_success` and `test_get_host_404`