mirror of
https://github.com/beetbox/beets.git
synced 2025-12-15 04:55:10 +01:00
Fix namedtuple call
This commit is contained in:
parent
bb4082fbfc
commit
03d0f9dfb3
1 changed files with 1 additions and 1 deletions
|
|
@ -21,7 +21,7 @@ from datetime import datetime, timedelta
|
|||
from collections import namedtuple
|
||||
|
||||
|
||||
SortedQuery = namedtuple('SortedQuery', 'query', 'sort')
|
||||
SortedQuery = namedtuple('SortedQuery', ['query', 'sort'])
|
||||
|
||||
|
||||
class Query(object):
|
||||
|
|
|
|||
Loading…
Reference in a new issue