format
All checks were successful
black-action / runner / black formatter (push) Successful in 6s

This commit is contained in:
0xMRTT 2023-06-10 22:14:55 +02:00
parent 421acb876c
commit 54ef8641fc
Signed by: 0xMRTT
GPG Key ID: 910B287304120902

View File

@ -33,6 +33,7 @@ from enum import Enum
import uuid
import subprocess
class Style(Enum):
"""
Enumeration class for different styles. Each style has three attributes:
@ -776,7 +777,9 @@ def run():
else:
prompt += arg + " "
async def generate_image(image_prompt, style_value, ratio_value, negative):
async def generate_image(
image_prompt, style_value, ratio_value, negative
):
imagine = AsyncImagine()
filename = str(uuid.uuid4()) + ".png"
try:
@ -867,5 +870,6 @@ Help Message:
print("Restarting bot due to {e}")
return 1
if __name__ == "__main__":
sys.exit(run())