Skip to content

Commit

Permalink
don't use 'six'
Browse files Browse the repository at this point in the history
  • Loading branch information
iLLiCiTiT committed Feb 10, 2025
1 parent e58a253 commit a711f34
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
import json
import os

import six
from qtpy import QtCore, QtGui


Expand Down Expand Up @@ -152,7 +151,7 @@ def load_font(self,
def hook(obj):
result = {}
for key in obj:
result[key] = six.unichr(int(obj[key], 16))
result[key] = chr(int(obj[key], 16))
return result

if directory is None:
Expand Down

0 comments on commit a711f34

Please sign in to comment.