Skip to content

Commit

Permalink
standardize future imports
Browse files Browse the repository at this point in the history
  • Loading branch information
illagrenan committed Mar 15, 2016
1 parent 23f8510 commit 4863b84
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions fabfile.py
@@ -1,9 +1,7 @@
# !/usr/bin/python
# coding=utf-8

from __future__ import print_function
from __future__ import division
from __future__ import absolute_import
from __future__ import unicode_literals
from __future__ import (absolute_import, division, print_function, unicode_literals)

import sys

Expand Down

0 comments on commit 4863b84

Please sign in to comment.