PEP-8 import order
Summary:
Import pika after standard library.
PEP-8 provides:Imports should be grouped in the following order:
- standard library imports
- related third party imports
- local application/library specific imports
You should put a blank line between each group of imports."
Test Plan: pylint notifications
Reviewers: dereckson
Differential Revision: http://devcentral.nasqueron.org/D296