Python Testing with pytest, Second Edition: ch3/test_count.py missing imports

in version p1 of the epub book test_count.py only has one import (import pytest). But it needs the following imports:

‘‘‘

from pathlib import Path

from tempfile import TemporaryDirectory

import pytest

import cards