Skip to content

Commit 8a90e4f

Browse files
committed
Add some missing __future__ imports, for consistency.
1 parent 4b2891b commit 8a90e4f

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

basest/exceptions.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
#!/usr/bin/python
22
# -*- coding: utf-8 -*-
3+
from __future__ import (
4+
absolute_import, division, print_function, unicode_literals
5+
)
36

47

58
class InvalidSymbolTableError(ValueError):

0 commit comments

Comments
 (0)