From 20fe6401272f398b8e91c61da281caf2beecbf96 Mon Sep 17 00:00:00 2001 From: "synacktra.work@gmail.com" Date: Sun, 21 Dec 2025 03:16:04 +0530 Subject: [PATCH] feat: add android to OS type literal --- libs/python/computer/computer/computer.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/python/computer/computer/computer.py b/libs/python/computer/computer/computer.py index 2c65c1b4..f5358e49 100644 --- a/libs/python/computer/computer/computer.py +++ b/libs/python/computer/computer/computer.py @@ -51,7 +51,7 @@ SYSTEM_INFO = { from .providers.base import VMProviderType from .providers.factory import VMProviderFactory -OSType = Literal["macos", "linux", "windows"] +OSType = Literal["macos", "linux", "windows", "android"] class Computer: