diff --git a/modules/search_name.py b/modules/search_name.py index 9f0ad2e..f569407 100644 --- a/modules/search_name.py +++ b/modules/search_name.py @@ -61,7 +61,7 @@ async def search_name(app: PyroClient, message: Message) -> Union[Location, None ) continue - locations = locations.reverse() + locations.reverse() keyboard = ReplyKeyboard(resize_keyboard=True, row_width=2) keyboard.add(*[ReplyButton(db_record["name"]) for db_record in locations]) diff --git a/modules/search_nearby.py b/modules/search_nearby.py index 7b95d00..1681995 100644 --- a/modules/search_nearby.py +++ b/modules/search_nearby.py @@ -26,13 +26,13 @@ async def search_nearby(app: PyroClient, message: Message) -> Union[Location, No locations = await col_locations.find(query).limit(6).to_list() - if len(locations) == 0 or locations is None: + if len(locations) == 0: await message.reply_text( app._("search_nearby_empty", "messages", locale=user.locale) ) return await search_name(app, message) - locations = locations.reverse() + locations.reverse() keyboard = ReplyKeyboard(resize_keyboard=True, row_width=2) keyboard.add(*[ReplyButton(db_record["name"]) for db_record in locations])