pyloid 0.23.4__tar.gz → 0.23.5__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: pyloid
3
- Version: 0.23.4
3
+ Version: 0.23.5
4
4
  Summary:
5
5
  Author: aesthetics-of-record
6
6
  Author-email: 111675679+aesthetics-of-record@users.noreply.github.com
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "pyloid"
3
- version = "0.23.4"
3
+ version = "0.23.5"
4
4
  description = ""
5
5
  authors = ["aesthetics-of-record <111675679+aesthetics-of-record@users.noreply.github.com>"]
6
6
  readme = "README.md"
@@ -6,15 +6,15 @@ import base64
6
6
  from ..utils import get_platform, is_production, get_production_path
7
7
 
8
8
  if TYPE_CHECKING:
9
- from ..pyloid import Pyloid
9
+ from ..pyloid import _Pyloid
10
10
 
11
11
 
12
12
  class BaseAPI(PyloidAPI):
13
- def __init__(self, window_id: str, data: dict, app: "Pyloid", rpc_url: Optional[str] = None):
13
+ def __init__(self, window_id: str, data: dict, app: "_Pyloid", rpc_url: Optional[str] = None):
14
14
  super().__init__()
15
15
  self.window_id: str = window_id
16
16
  self.data: dict = data
17
- self.app: "Pyloid" = app
17
+ self.app: "_Pyloid" = app
18
18
  self.rpc_url: Optional[str] = rpc_url
19
19
 
20
20
  @Bridge(result=dict)
@@ -485,8 +485,8 @@ class _Pyloid(QApplication):
485
485
 
486
486
  for window in self.windows_dict.values():
487
487
  window._window.close()
488
- window.web_page.deleteLater()
489
- window.web_view.deleteLater()
488
+ # window._window.web_view.page().deleteLater()
489
+ # window._window.web_view.deleteLater()
490
490
 
491
491
  self.windows_dict.clear()
492
492
  QApplication.quit()
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes