Fixed reverse assignation and stopped commit-tests
This commit is contained in:
parent
a9a92257dc
commit
c91d7f3afa
@ -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])
|
||||
|
@ -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])
|
||||
|
Reference in New Issue
Block a user