8000 pep8 fixes · matplotlib/matplotlib@9de06c0 · GitHub
[go: up one dir, main page]

Skip to content

Commit 9de06c0

Browse files
committed
pep8 fixes
1 parent 0d51e03 commit 9de06c0

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

lib/matplotlib/tests/test_cache.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,10 @@
1515
def test_cache_basic(tmpdir):
1616
def intmp(f):
1717
return tmpdir.join(f)
18+
1819
def fname(f):
1920
return str(intmp(f))
21+
2022
try:
2123
cache = _ConversionCache(fname('cache'))
2224
intmp('fake.pdf').write_binary(b'this is a fake pdf file')
@@ -49,8 +51,10 @@ def fname(f):
4951
def test_cache_expire(tmpdir):
5052
def intmp(*f):
5153
return tmpdir.join(*f)
54+
5255
def fname(*f):
5356
return str(intmp(*f))
57+
5458
try:
5559
cache = _ConversionCache(fname('cache'), 10)
5660
for i in range(5):

0 commit comments

Comments
 (0)
0