Skip to content

Commit c7b7e62

Browse files
author
dinosaurfiles
committed
Update code for PEP8 compliance
1 parent ef22265 commit c7b7e62

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

tests/test_daterange.py

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,14 @@
66
except ImportError:
77
import unittest
88

9+
910
class DateRangeTest(unittest.TestCase):
1011
def setUp(self):
11-
self.openlicensefile = os.path.join(os.path.dirname(__file__), '../LICENSE.txt')
12-
self.pattern = 'Copyright (c) 2012 - %s SendGrid, Inc.' % (time.strftime("%Y"))
12+
self.openlicensefile = os.path.join(
13+
os.path.dirname(__file__),
14+
'../LICENSE.txt')
15+
self.pattern = 'Copyright (c) 2012 - %s SendGrid, Inc.' % (
16+
time.strftime("%Y"))
1317
self.licensefile = open(self.openlicensefile).read()
1418

1519
def test__daterange(self):

0 commit comments

Comments
 (0)