LoginSignup
2
2

More than 3 years have passed since last update.

pythonでretryを使おうとしたらTypeError: 'module' object is not callable

Posted at

前提

  • python3
  • retryはインストール済み

問題のコード

import retry


@retry()
def main():
    print("hoge!")
main()

エラー

TypeError: 'module' object is not callable

モジュールをそのまま呼び出すことはできないよ!ってことらしい。

解決

import retry

from retry import retry

にする。
お疲れ様でした!

2
2
1

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
2