Skip to content

Commit 770aeb4

Browse files
committed
parens around __future__ import in bootstrap_env.py
1 parent 885c832 commit 770aeb4

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

bootstrap_env.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
#!/usr/bin/env python
22

3-
from __future__ import absolute_import, division, print_function, \
4-
with_statement, unicode_literals
5-
3+
from __future__ import (
4+
absolute_import, division, print_function, with_statement, unicode_literals
5+
)
66

77
import os
88
import sys

0 commit comments

Comments
 (0)