Skip to content

Commit

Permalink
Fix accidentaly messed up return type default_location getter
Browse files Browse the repository at this point in the history
  • Loading branch information
rdbende committed Jan 19, 2024
1 parent 87639a3 commit 21c5e8b
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions cozy/model/settings.py
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
import logging
from typing import NoReturn

import peewee

import cozy.ext.inject as inject
from peewee import SqliteDatabase

import cozy.ext.inject as inject
from cozy.db.book import Book
from cozy.db.settings import Settings as SettingsModel
from cozy.db.storage import Storage as StorageModel
from cozy.model.storage import Storage, InvalidPath
from cozy.model.storage import InvalidPath, Storage
from cozy.report import reporter

log = logging.getLogger("model.storage_location")
Expand Down Expand Up @@ -47,11 +47,11 @@ def last_played_book(self, new_value):
self._db_object.save(only=self._db_object.dirty_fields)

@property
def default_location(self) -> bool:
def default_location(self) -> Storage | NoReturn:
for location in self.storage_locations:
if location.default:
return True
return False
return location
assert False, "this should never happen"

@property
def storage_locations(self) -> list[Storage]:
Expand Down

0 comments on commit 21c5e8b

Please sign in to comment.