Skip to content
This repository was archived by the owner on Sep 21, 2022. It is now read-only.

Commit f0ab2dc

Browse files
Port to PyQt6
1 parent 60d7f30 commit f0ab2dc

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

buffer.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,9 @@
2020
# along with this program. If not, see <http://www.gnu.org/licenses/>.
2121

2222

23-
from PyQt5 import QtCore
24-
from PyQt5.QtCore import QUrl
25-
from PyQt5.QtCore import QFileSystemWatcher
23+
from PyQt6 import QtCore
24+
from PyQt6.QtCore import QUrl
25+
from PyQt6.QtCore import QFileSystemWatcher
2626
from core.browser import BrowserBuffer
2727
import markdown
2828

md_mermaid.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
from markdown.extensions import Extension
1414
from markdown.preprocessors import Preprocessor
15-
from PyQt5.QtCore import QUrl
15+
from PyQt6.QtCore import QUrl
1616

1717
import re
1818
import os

0 commit comments

Comments
 (0)