mirror of
https://github.com/beetbox/beets.git
synced 2025-12-08 01:23:09 +01:00
fix NotImplementedError()
This commit is contained in:
parent
c211aabd72
commit
1e3704a27e
1 changed files with 2 additions and 2 deletions
|
|
@ -120,10 +120,10 @@ class ExportFormat(object):
|
|||
return JsonFileFormat(**kwargs)
|
||||
else:
|
||||
return JsonPrintFormat()
|
||||
raise NotImplemented("")
|
||||
raise NotImplementedError()
|
||||
|
||||
def export(self, data, **kwargs):
|
||||
raise NotImplemented("")
|
||||
raise NotImplementedError()
|
||||
|
||||
|
||||
class JsonPrintFormat(ExportFormat):
|
||||
|
|
|
|||
Loading…
Reference in a new issue