From d93cc1b44dcd35255cd95e848b7f99ac314a8288 Mon Sep 17 00:00:00 2001 From: Jens Luetjen Date: Sat, 2 Apr 2016 16:04:45 +0200 Subject: [PATCH] Remove unnecessary array initialzation --- mopidy/core/history.py | 1 - 1 file changed, 1 deletion(-) diff --git a/mopidy/core/history.py b/mopidy/core/history.py index da688980..7f7e4fe9 100644 --- a/mopidy/core/history.py +++ b/mopidy/core/history.py @@ -75,5 +75,4 @@ class HistoryController(object): def _load_state(self, state, coverage): if state: if 'history' in coverage: - self._history = [] self._history = [(h.timestamp, h.track) for h in state.history]