Use absolute_import in uptime module

This commit is contained in:
Frederic Junod 2017-11-18 09:25:02 +01:00
parent d698b58fd8
commit 34ac317bfa

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