File: Drop-proxy_tools-dependency.patch

package info (click to toggle)
python-pywebview 5.0.5%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 33,680 kB
  • sloc: python: 9,592; javascript: 917; java: 158; cs: 130; sh: 16; makefile: 3
file content (31 lines) | stat: -rw-r--r-- 882 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
From: =?utf-8?q?Jeremy_B=C3=ADcha?= <jeremy.bicha@canonical.com>
Date: Mon, 1 Apr 2024 14:50:27 -0400
Subject: Drop proxy_tools dependency
Forwarded: not-needed

It is not packaged in Debian yet
---
 webview/__init__.py | 3 ---
 1 file changed, 3 deletions(-)

diff --git a/webview/__init__.py b/webview/__init__.py
index 3ed3737..de9395a 100755
--- a/webview/__init__.py
+++ b/webview/__init__.py
@@ -20,8 +20,6 @@ from collections.abc import Iterable, Mapping
 from typing import Any, Callable
 from uuid import uuid4

-from proxy_tools import module_property
-
 import webview.http as http
 from webview.errors import JavascriptException, WebViewException
 from webview.event import Event
@@ -391,7 +389,6 @@ def active_window() -> Window | None:
     return None


-@module_property
 def screens() -> list[Screen]:
     guilib = initialize()
     screens = guilib.get_screens()