Skip to content

Commit

Permalink
add the MICRO unicode character
Browse files Browse the repository at this point in the history
  • Loading branch information
jborbely committed Apr 8, 2022
1 parent 4bd0fd0 commit e96c540
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion msl/qt/characters.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,10 @@
"""
from enum import Enum

__all__ = ['DEGREE', 'DEGREE_C', 'DEGREE_F', 'GREEK', 'INFINITY', 'PLUS_MINUS']
__all__ = [
'DEGREE', 'DEGREE_C', 'DEGREE_F', 'GREEK',
'INFINITY', 'MICRO', 'PLUS_MINUS',
]

DEGREE = '\u00B0'
"""Degree character."""
Expand Down Expand Up @@ -81,5 +84,8 @@ class GREEK(Enum):
INFINITY = '\u221E'
"""Infinity character."""

MICRO = '\u00B5'
"""Micro character."""

PLUS_MINUS = '\u00B1'
"""Plus-minus character."""

0 comments on commit e96c540

Please sign in to comment.