Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion examples/qml_httpx/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
import asyncio
from pathlib import Path

from qasync import QEventLoop, QApplication
from PySide6.QtCore import QUrl
from PySide6.QtQml import QQmlApplicationEngine, qmlRegisterType
from qasync import QEventLoop, QApplication

from service import ExampleService

Expand Down
2 changes: 1 addition & 1 deletion examples/qml_httpx/service.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import httpx

from qasync import asyncSlot
from PySide6.QtCore import QObject, Signal, Property, Slot
from qasync import asyncSlot


class ExampleService(QObject):
Expand Down