Skip to content
Snippets Groups Projects
Verified Commit 8fe803d4 authored by Newbyte's avatar Newbyte :snowflake:
Browse files

mrtest.apk_installed: Add return type hint for get_installed_all

parent 89a199b3
No related branches found
No related tags found
No related merge requests found
......@@ -5,11 +5,12 @@
import logging
import os
import subprocess
from typing import Optional
cache_installed_all = None
def get_installed_all():
def get_installed_all() -> dict[str, Optional[str]]:
global cache_installed_all
if cache_installed_all:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment