Skip to content

Commit fedaab2

Browse files
committed
Fixing style errors.
1 parent 42f2180 commit fedaab2

File tree

1 file changed

+9
-5
lines changed

1 file changed

+9
-5
lines changed

nox.py

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
import nox
99

1010

11-
PANDAS_PRE_WHEELS='https://7933911d6844c6c53a7d-47bd50c35cd79bd838daf386af554a83.ssl.cf2.rackcdn.com'
11+
PANDAS_PRE_WHEELS = 'https://7933911d6844c6c53a7d-47bd50c35cd79bd838daf386af554a83.ssl.cf2.rackcdn.com'
1212

1313

1414
@nox.session
@@ -29,21 +29,24 @@ def default(session):
2929
@nox.session
3030
def test27(session):
3131
session.interpreter = 'python2.7'
32-
session.install('-r', os.path.join('.', 'ci', 'requirements-2.7-0.19.2.pip'))
32+
session.install('-r', os.path.join('.', 'ci',
33+
'requirements-2.7-0.19.2.pip'))
3334
default(session)
3435

3536

3637
@nox.session
3738
def test35(session):
3839
session.interpreter = 'python3.5'
39-
session.install('-r', os.path.join('.', 'ci', 'requirements-3.5-0.18.1.pip'))
40+
session.install('-r', os.path.join('.', 'ci',
41+
'requirements-3.5-0.18.1.pip'))
4042
default(session)
4143

4244

4345
@nox.session
4446
def test36(session):
4547
session.interpreter = 'python3.6'
46-
session.install('-r', os.path.join('.', 'ci', 'requirements-3.6-0.20.1.conda'))
48+
session.install('-r', os.path.join('.', 'ci',
49+
'requirements-3.6-0.20.1.conda'))
4750
default(session)
4851

4952

@@ -56,7 +59,8 @@ def test36master(session):
5659
'--timeout=60',
5760
'-f', PANDAS_PRE_WHEELS,
5861
'pandas')
59-
session.install('-r', os.path.join('.', 'ci', 'requirements-3.6-MASTER.pip'))
62+
session.install('-r', os.path.join('.', 'ci',
63+
'requirements-3.6-MASTER.pip'))
6064
default(session)
6165

6266

0 commit comments

Comments
 (0)