Skip to content

Instantly share code, notes, and snippets.

@peluse
Created May 4, 2015 19:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save peluse/9518a8faf2d09f82f6cd to your computer and use it in GitHub Desktop.
Save peluse/9518a8faf2d09f82f6cd to your computer and use it in GitHub Desktop.
IMPLEMENTATION A:
if x:
return self.logger.error(bla bla bla)
return None
IMPLEMENTATION B:
if x:
self.logger.error(bla bla bla)
return None
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment