Skip to content

Commit 73a25f1

Browse files
committed
Add specific version and apply
1 parent 180ec67 commit 73a25f1

File tree

11 files changed

+12
-14
lines changed

11 files changed

+12
-14
lines changed

.github/workflows/pythonpackage.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
3232
- name: Run Black -- check
3333
run: |
34-
pip install black
34+
pip install black==25.1.0
3535
# check that code is formatted with black
3636
black --check .
3737

.gitignore

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,5 +23,5 @@ env*/*
2323
pyenv*
2424
*.loop
2525
*.spec
26-
venv/
27-
.venv/
26+
venv*/
27+
.venv*/

s_tui/about_menu.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
# You should have received a copy of the GNU General Public License
1616
# along with this program; if not, write to the Free Software
1717
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
18-
"""Displays the About message menu """
18+
"""Displays the About message menu"""
1919

2020
from __future__ import print_function
2121
from __future__ import absolute_import

s_tui/help_menu.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,7 @@
1616
# along with this program; if not, write to the Free Software
1717
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
1818

19-
"""A class display the help message menu
20-
"""
19+
"""A class display the help message menu"""
2120

2221
from __future__ import print_function
2322
from __future__ import absolute_import

s_tui/helper_functions.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
# You should have received a copy of the GNU General Public License
1616
# along with this program; if not, write to the Free Software
1717
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
18-
""" Helper functions module with common useful functions """
18+
"""Helper functions module with common useful functions"""
1919

2020

2121
import os

s_tui/sources/fan_source.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
# You should have received a copy of the GNU General Public License
1616
# along with this program; if not, write to the Free Software
1717
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
18-
""" This module implements a fan source """
18+
"""This module implements a fan source"""
1919

2020

2121
from __future__ import absolute_import

s_tui/sources/rapl_power_source.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
# You should have received a copy of the GNU General Public License
1616
# along with this program; if not, write to the Free Software
1717
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
18-
""" RaplPowerSource is a s-tui Source, used to gather power usage
18+
"""RaplPowerSource is a s-tui Source, used to gather power usage
1919
information
2020
"""
2121

s_tui/sources/rapl_read.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
# You should have received a copy of the GNU General Public License
1616
# along with this program; if not, write to the Free Software
1717
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
18-
""" This module reads intel power measurements"""
18+
"""This module reads intel power measurements"""
1919

2020
from __future__ import absolute_import
2121

s_tui/sources/source.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
# You should have received a copy of the GNU General Public License
1616
# along with this program; if not, write to the Free Software
1717
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
18-
""" This module implements a parent source class for s-tui"""
18+
"""This module implements a parent source class for s-tui"""
1919

2020
from collections import OrderedDict
2121
import logging

s_tui/sources/temp_source.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
# You should have received a copy of the GNU General Public License
1616
# along with this program; if not, write to the Free Software
1717
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
18-
""" This module implements a Temperature source """
18+
"""This module implements a Temperature source"""
1919

2020
from __future__ import absolute_import
2121

0 commit comments

Comments
 (0)