From baa9423fad63315ac29f0705a115a6900810170c Mon Sep 17 00:00:00 2001 From: Alexa Amundson <118287761+blackboxprogramming@users.noreply.github.com> Date: Mon, 17 Nov 2025 22:22:26 -0600 Subject: [PATCH 1/3] Update core_os/tests/test_state.py Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- core_os/tests/test_state.py | 1 - 1 file changed, 1 deletion(-) diff --git a/core_os/tests/test_state.py b/core_os/tests/test_state.py index 27c5c2e..af83d4d 100644 --- a/core_os/tests/test_state.py +++ b/core_os/tests/test_state.py @@ -1,5 +1,4 @@ """Tests for OS state management""" -import pytest from core_os.state import ( get_initial_state, get_current_state, From 4808b2a1adb411f45dfa7bc0da551a0fc6a559d7 Mon Sep 17 00:00:00 2001 From: Alexa Amundson <118287761+blackboxprogramming@users.noreply.github.com> Date: Mon, 17 Nov 2025 22:22:50 -0600 Subject: [PATCH 2/3] Update core_os/state.py Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- core_os/state.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/core_os/state.py b/core_os/state.py index 323d40a..99d4f38 100644 --- a/core_os/state.py +++ b/core_os/state.py @@ -1,7 +1,5 @@ """Core OS state management""" from typing import Optional -import copy - from core_os.models import OSState, Window, UserSession, WindowState From bc06692d0926eb3d9b391dad376584bc0d763963 Mon Sep 17 00:00:00 2001 From: Alexa Amundson <118287761+blackboxprogramming@users.noreply.github.com> Date: Mon, 17 Nov 2025 22:23:26 -0600 Subject: [PATCH 3/3] Update core_os/tests/test_models.py Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- core_os/tests/test_models.py | 1 - 1 file changed, 1 deletion(-) diff --git a/core_os/tests/test_models.py b/core_os/tests/test_models.py index 018f424..47591d4 100644 --- a/core_os/tests/test_models.py +++ b/core_os/tests/test_models.py @@ -1,5 +1,4 @@ """Tests for core OS models""" -import pytest from core_os.models import UserSession, Window, OSState, WindowState