flask/flaskr
Neo c1f791efee Fix immutable cursor issue
Address the issue where 'posts' was treated as a mutable object
in 'flaskr/blog.py'. The 'posts' variable is an immutable cursor,
which led to errors when attempting to modify it directly.

The solution involved creating a new list from the cursor to allow
modifications without affecting the original cursor. This change
ensures that the application logic remains intact while preventing
any runtime errors related to immutability.
2024-09-17 07:47:14 +00:00
..
static Sagittal logo 2024-09-09 22:04:41 +01:00
templates Add markdown support to post body 2024-09-17 07:45:24 +00:00
__init__.py Add markdown support to post body 2024-09-17 07:45:24 +00:00
auth.py I just want the tutorial 2024-09-06 00:18:20 +01:00
blog.py Fix immutable cursor issue 2024-09-17 07:47:14 +00:00
db.py I just want the tutorial 2024-09-06 00:18:20 +01:00
schema.sql I just want the tutorial 2024-09-06 00:18:20 +01:00