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

Commit

Permalink
Port to PyQt6
Browse files Browse the repository at this point in the history
  • Loading branch information
manateelazycat committed Mar 29, 2022
1 parent 60d7f30 commit f0ab2dc
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions buffer.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@
# along with this program. If not, see <http://www.gnu.org/licenses/>.


from PyQt5 import QtCore
from PyQt5.QtCore import QUrl
from PyQt5.QtCore import QFileSystemWatcher
from PyQt6 import QtCore
from PyQt6.QtCore import QUrl
from PyQt6.QtCore import QFileSystemWatcher
from core.browser import BrowserBuffer
import markdown

Expand Down
2 changes: 1 addition & 1 deletion md_mermaid.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

from markdown.extensions import Extension
from markdown.preprocessors import Preprocessor
from PyQt5.QtCore import QUrl
from PyQt6.QtCore import QUrl

import re
import os
Expand Down

0 comments on commit f0ab2dc

Please sign in to comment.