Closed spotlesstofu closed 3 years ago
This:
def __str__(self): return '''\ Autodiscover endpoint: %s Auth type: %s''' % ( self.service_endpoint, self.auth_type, )
becomes this (after running pyment):
def __str__(self): """ Args: Returns: Autodiscover endpoint: %s Auth type: %s''' % ( """ self.service_endpoint, self.auth_type, )
To replicate, run pyment -o google -p False -t -w on this file
pyment -o google -p False -t -w
Hi @spotlesstofu, Thanks for reporting. This issue is addressed by the issue #90 and was fixed by the PR #91 in current master.
This:
becomes this (after running pyment):
To replicate, run
pyment -o google -p False -t -w
on this file