Why is instance variable not getting recognized

前端 未结 2 1912
余生分开走
余生分开走 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:19

    That's expected. In your code, python will not be able to access class members without self. Here is the correct code:

    def initializeConfig(self):
        self.configParser.read(self.configFilePath)
        return self.configParser
    
    def getConfigValue(self,key):
        return self.configParser.get('WPTConfig', key)
    

提交回复
热议问题