Skip to content

Commit

Permalink
Adding missing future imports (#3493)
Browse files Browse the repository at this point in the history
  • Loading branch information
mistercrunch committed Sep 19, 2017
1 parent ccd5fd4 commit ed9f564
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
3 changes: 3 additions & 0 deletions superset/sql_lab.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
from __future__ import absolute_import
from __future__ import division
from __future__ import print_function
from __future__ import unicode_literals

from time import sleep
Expand Down
3 changes: 3 additions & 0 deletions superset/sql_parse.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
from __future__ import absolute_import
from __future__ import division
from __future__ import print_function
from __future__ import unicode_literals

import logging
Expand Down

0 comments on commit ed9f564

Please sign in to comment.