第7章「7-3-5: 書籍のURLを取り出す」(p227)に記載されている、 `get_python_books.py` 24行目のsleep()関数の閉じカッコが抜けている 誤 ```python time.sleep(1 ``` 正 ```python time.sleep(1) ```