Merge pull request #207 from fredj/absolute_import

Use absolute_import in uptime module
This commit is contained in:
tobi-wan-kenobi 2017-11-18 11:25:49 +01:00 committed by GitHub
commit edb53ca34a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -2,6 +2,10 @@
"""Displays the system uptime."""
# Use absolute_import because there's already a datatime module
# in the same directory
from __future__ import absolute_import
import bumblebee.input
import bumblebee.output
import bumblebee.engine