Inky Impression 5.7" (7 colour ePaper/eInk HAT) Scripts

Hello I have a Inky Impression 5.7" running with a pi zero 2. I can show images running scripts but i cannot clear the screen without running ./clear -t impression
I would like to edit the code in the script to not ask the for the " -t impression"

to make the image script i needed to

change some setting

“#!/usr/bin/env python3
import sys
from PIL import Image
from inky.inky_uc8159 import Inky
inky = Inky()
saturation = 0.8
image = Image.open(”/home/fpp/media/images/BoLOGO.jpg")
inky.set_image(image, saturation=saturation)
inky.show()
"

I want to do the same thing for clean.py but i cant get it to work.

how can i load this " from inky.inky_uc8159 import Inky" asssume into clean.py so that it fufill all arguments?

thank you