1. ホーム
  2. Python

[解決済み] です。TypeError: read() missing 1 required positional argument: 'filename'.

2022-02-19 13:12:47
<パス

unittestオートメーションスクリプトを実行すると、error typeエラーが報告されます: read() is missing 1 required location parameter: "filename"

スクリーンショットは以下の通りです。

その理由は、read()メソッドが、readCsvfile.csvファイル内の

from py_file.readCsvfile import read


readCsvfile.csvファイルのread()メソッドがどのように書かれているのかを見てみましょう。メソッドの引数 filename は、呼び出されたときにインスタンス化する必要がある変数であることがわかります。
完全なコードです。

#coding=utf-8
import csv
import os

def read(filename):
    base_path=os.path.dirname(__file__) # Get the current file directory
    path=base_path.replace('py_file','data/'+filename)# directory replacement

    with open(path) as file:
        data=csv.reader(file)
        list=[]
        i=0
        for row in data:
            if i==0:
                pass
            else:
                list.append(row)
            i=i+1
    return list
if __name__ == '__main__': # The code below main will only be executed in the current file and cannot be called by other methods
    list=read("Address.csv")
    print(list)


解決策
read() メソッドを呼び出す際に、パラメータをインスタンス化するだけです。