Why is instance variable not getting recognized

前端 未结 2 1910
余生分开走
余生分开走 2021-01-21 10:42

I have the following class in Python.

import os,ConfigParser

class WebPageTestConfigUtils:

    def __init__(self, configParser=None, configFilePath=None):
             


        
2条回答
  •  醉酒成梦
    2021-01-21 11:22

    You are defining

    ...
    self.configParser = ConfigParser.RawConfigParser()
    ...
    

    And accessing using

    ...
    configParser.read(configFilePath)
    ...
    

    You have to access as self.configParser.

提交回复
热议问题