Skip to content

Commit

Permalink
Merge pull request #355 from AWhetter/fix_vendorising
Browse files Browse the repository at this point in the history
Fixed vendorised copies of Qt.py clashing
  • Loading branch information
mottosso authored Jan 24, 2021
2 parents 8a8953b + 1e14229 commit 64e8162
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Qt.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
import json


__version__ = "1.3.2"
__version__ = "1.3.3"

# Enable support for `from Qt import *`
__all__ = []
Expand Down Expand Up @@ -1909,7 +1909,7 @@ def _install():
setattr(our_submodule, member, placeholder)

# Enable direct import of QtCompat
sys.modules['Qt.QtCompat'] = Qt.QtCompat
sys.modules[__name__ + ".QtCompat"] = Qt.QtCompat

# Backwards compatibility
if hasattr(Qt.QtCompat, 'loadUi'):
Expand Down

0 comments on commit 64e8162

Please sign in to comment.