fw.display() function doesn't show the inputs/outputs of a workflow, shows only the variables between steps. Example: @is_fairworkflow(label='My Workflow for converting to Grayscale and adding text') def my_workflow(im1, text): """ A simple addition, subtraction, multiplication workflow """ im2 = rgb2gray_image(im1) im3 = add_text_to_image(im2, text) return im3 <img width="342" alt="Screenshot 2021-03-09 at 11 35 55" src="https://user-images.githubusercontent.com/6261228/110458101-a9c66500-80cb-11eb-947b-3d671dc8979c.png">