File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
Filter options
Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
Original file line number Diff line number Diff line change @@ -291,7 +291,7 @@ def __call__(self, s):
291
291
class todate (converter ):
292
292
"""convert to a date or None"""
293
293
def __init__ (self , fmt = '%Y-%m-%d' , missing = 'Null' , missingval = None ):
294
- ' use a :func:`time.strptime` format string for conversion'
294
+ """ use a :func:`time.strptime` format string for conversion"""
295
295
converter .__init__ (self , missing , missingval )
296
296
self .fmt = fmt
297
297
@@ -408,10 +408,10 @@ def __call__(self, *args, **kwargs):
408
408
return mtd (* args , ** kwargs )
409
409
410
410
def __eq__ (self , other ):
411
- '''
411
+ """
412
412
Compare the held function and instance with that held by
413
413
another proxy.
414
- '''
414
+ """
415
415
try :
416
416
if self .inst is None :
417
417
return self .func == other .func and other .inst is None
@@ -1204,7 +1204,7 @@ def get_recursive_filelist(args):
1204
1204
1205
1205
1206
1206
def pieces (seq , num = 2 ):
1207
- "Break up the *seq* into *num* tuples"
1207
+ """ Break up the *seq* into *num* tuples"" "
1208
1208
start = 0
1209
1209
while 1 :
1210
1210
item = seq [start :start + num ]
@@ -2116,7 +2116,7 @@ def __call__(self, key):
2116
2116
# iteration
2117
2117
iters = [myiter (it ) for it in iterables ]
2118
2118
minvals = minkey = True
2119
- while 1 :
2119
+ while True :
2120
2120
minvals = ([_f for _f in [it .key for it in iters ] if _f ])
2121
2121
if minvals :
2122
2122
minkey = min (minvals )
You can’t perform that action at this time.
0 commit comments