Skip to content

Commit 97378b0

Browse files
committed
style: reformat file
1 parent 9c2346b commit 97378b0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/AutoGGUF.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -759,9 +759,9 @@ def __init__(self):
759759
self.logger.info(AUTOGGUF_INITIALIZATION_COMPLETE)
760760

761761
def parse_resolution(self):
762-
res = os.environ.get('AUTOGGUF_RESOLUTION', '1650x1100')
762+
res = os.environ.get("AUTOGGUF_RESOLUTION", "1650x1100")
763763
try:
764-
width, height = map(int, res.split('x'))
764+
width, height = map(int, res.split("x"))
765765
if width <= 0 or height <= 0:
766766
raise ValueError
767767
return width, height

0 commit comments

Comments
 (0)