Remove unnecessary amount of pathclass.Path instantiation.
This commit is contained in:
parent
c87d38a36b
commit
f4d3679063
1 changed files with 5 additions and 5 deletions
|
@ -176,11 +176,11 @@ class TSDB:
|
|||
for, and return that path. If none of them exist, then use the most
|
||||
preferred filepath.
|
||||
'''
|
||||
paths = [pathclass.Path(format.format(name=name)) for format in formats]
|
||||
for path in paths:
|
||||
if path.is_file:
|
||||
return path
|
||||
return paths[-1]
|
||||
for form in formats:
|
||||
path = form.format(name=name)
|
||||
if os.path.isfile(path):
|
||||
break
|
||||
return pathclass.Path(path)
|
||||
|
||||
@classmethod
|
||||
def for_subreddit(cls, name, do_create=True):
|
||||
|
|
Loading…
Reference in a new issue