Closed ramonfigueiredo closed 1 month ago
This code fixes the error due to an issue where the code expects the jobs
object to be iterable, but a single Job
object is being passed, resulting in a TypeError
. The fix ensures that when a single Job object is passed, it is wrapped in a list to make it iterable.
viewComments
method inMenuActions.py
to wrap single Job objects in a list.TypeError
when attempting to iterate over a non-iterable Job object.