Fix linter error

This commit is contained in:
Sumner Evans
2020-05-22 01:20:40 -06:00
parent 09f6a2afb3
commit 20b8896cb8
2 changed files with 1 additions and 2 deletions

View File

@@ -128,7 +128,6 @@ class SubsonicAdapter(Adapter):
# TODO (#112): support XML?
def initial_sync(self):
print('initial_sync')
# Wait for the ping to happen.
tries = 0
while not self._server_available.value and tries < 5:

View File

@@ -3,7 +3,7 @@ These are the API objects that are returned by Subsonic.
"""
import hashlib
from dataclasses import asdict, dataclass, field
from dataclasses import dataclass, field
from datetime import datetime, timedelta
from typing import Any, Dict, List, Optional, Union