From e073d8ba470ef7f4a5af74ff05924c608d4e0804 Mon Sep 17 00:00:00 2001 From: James Smith Date: Mon, 22 Dec 2025 12:08:21 +0000 Subject: [PATCH] Add missing time import MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- intercept.py | 1 + 1 file changed, 1 insertion(+) diff --git a/intercept.py b/intercept.py index 723db03..16c1da7 100755 --- a/intercept.py +++ b/intercept.py @@ -34,6 +34,7 @@ import pty import os import select import json +import time from flask import Flask, render_template_string, jsonify, request, Response, send_file app = Flask(__name__)