mirror of
https://github.com/clinton-hall/nzbToMedia.git
synced 2025-08-14 10:36:52 -07:00
Fix flake8-comprehensions C403 Unnecessary list comprehension
This commit is contained in:
parent
f2964296c5
commit
b9c7eec834
1 changed files with 1 additions and 1 deletions
|
@ -713,7 +713,7 @@ def combine_vts(vts_path):
|
|||
|
||||
def combine_cd(combine):
|
||||
new_files = []
|
||||
for item in set([re.match('(.+)[cC][dD][0-9].', item).groups()[0] for item in combine]):
|
||||
for item in {re.match('(.+)[cC][dD][0-9].', item).groups()[0] for item in combine}:
|
||||
concat = ''
|
||||
for n in range(99):
|
||||
files = [file for file in combine if
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue