pipを使わずwindows10にtesseractとPyOCRをインストールする方法 のサイトを参考に
以下のプログラムを実行するとエラーが出てしまいます。どうしてでしょうか?

エラー内容

    File "<ipython-input-15-8474a031face>", line 4
    print("No OCR tool found")
        ^
IndentationError: expected an indented block

プログラム文

tools = pyocr.get_available_tools()
if len(tools) == 0:
print("No OCR tool found")
sys.exit(1)