with sqlite3.connect(PATH_DATABASE) as con:
print("connected to db at get_categoryx_personal")
print(category_user)
sql = f"SELECT category_name FROM storage_category_personal WHERE category_user = {category_user}"
personal_city = con.execute(sql).fetchone()
from tgbot.keyboards.inline_page import products_item_category_swipe_fp
products_item_category_swipe_fp(personal_city)
print(personal_city)
return con.execute(sql).fetchone()