Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

is_success and is_declined is broken #6

Open
chadwhitacre opened this issue Feb 25, 2012 · 0 comments
Open

is_success and is_declined is broken #6

chadwhitacre opened this issue Feb 25, 2012 · 0 comments

Comments

@chadwhitacre
Copy link

(Pdb) trans.is_success()
*** AttributeError: 'Transaction' object has no attribute 'processor_response'
(Pdb) trans.is_declined()
*** AttributeError: 'function' object has no attribute 'get'
(Pdb) 

The docstring for each says "You are better off checking trans.errors", which is good advice. Could these functions themselves be simplified to use trans.errors?

def is_success(self):
    return not self.is_declined()

def is_declined(self):
    return bool(self.errors)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant