Skip to content

Commit 2be28fd

Browse files
committed
minor code quality fix
1 parent 7cc3bf3 commit 2be28fd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/sasctl/_services/report_images.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ def get_images_async(cls, report, section=None, elements=None, size=None, lod=No
8585

8686
lod = lod or HIGH
8787

88-
if lod not in _LOD_VALUES.keys():
88+
if lod not in _LOD_VALUES:
8989
raise ValueError(
9090
"LOD value of '%s' is invalid. Expected one of " "LOW, MEDIUM, HIGH."
9191
)

0 commit comments

Comments
 (0)