Skip to content

Commit 31c05b8

Browse files
[pre-commit.ci] pre-commit autoupdate (#68)
1 parent 348b7fe commit 31c05b8

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ repos:
66
- id: end-of-file-fixer
77
- id: trailing-whitespace
88
- repo: https://github.com/psf/black
9-
rev: 24.10.0
9+
rev: 25.1.0
1010
hooks:
1111
- id: black
1212
- repo: https://github.com/asottile/pyupgrade

src/main/python/data_models.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ def __init__(self, data=None, names=None, deltas=None):
9797
"""
9898
super().__init__()
9999
self._names = names
100-
self._header = ["Peak", "Counts", "\u00B11\u03C3", "Delta", "\u00B11\u03C3"]
100+
self._header = ["Peak", "Counts", "\u00b11\u03c3", "Delta", "\u00b11\u03c3"]
101101

102102
if data is None:
103103
self._data = np.zeros((0, 0, 0, 0))
@@ -135,7 +135,7 @@ def headerData(self, section, orientation, role):
135135
if orientation == QtCore.Qt.Orientation.Horizontal: # column headers
136136
return str(self._header[section])
137137
if orientation == QtCore.Qt.Orientation.Vertical: # row headers
138-
return "\u25CF"
138+
return "\u25cf"
139139

140140
if role == QtCore.Qt.ItemDataRole.ForegroundRole:
141141
if orientation == QtCore.Qt.Orientation.Vertical:

0 commit comments

Comments
 (0)