All Downloads are FREE. Search and download functionalities are using the official Maven repository.

robotframework-2.7.7.atest.testresources.testlibs.PythonVarArgsConstructor.py Maven / Gradle / Ivy

The newest version!
class PythonVarArgsConstructor:
    
    def __init__(self, mandatory, *varargs):
        self.mandatory = mandatory
        self.varargs = varargs

    def get_args(self):
        return self.mandatory, ' '.join(self.varargs)





© 2015 - 2024 Weber Informatics LLC | Privacy Policy