From 97378b0009640ba80811cc91da963b06fdbc0bcd Mon Sep 17 00:00:00 2001 From: BuildTools Date: Fri, 16 Aug 2024 17:29:48 -0700 Subject: [PATCH] style: reformat file --- src/AutoGGUF.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/AutoGGUF.py b/src/AutoGGUF.py index d1d97c6..254e75e 100644 --- a/src/AutoGGUF.py +++ b/src/AutoGGUF.py @@ -759,9 +759,9 @@ def __init__(self): self.logger.info(AUTOGGUF_INITIALIZATION_COMPLETE) def parse_resolution(self): - res = os.environ.get('AUTOGGUF_RESOLUTION', '1650x1100') + res = os.environ.get("AUTOGGUF_RESOLUTION", "1650x1100") try: - width, height = map(int, res.split('x')) + width, height = map(int, res.split("x")) if width <= 0 or height <= 0: raise ValueError return width, height