Skip to content

Commit 97319df

Browse files
style: format code with Black
This commit fixes the style issues introduced in 2d5849d according to the output from Black. Details: None
1 parent 2d5849d commit 97319df

File tree

5 files changed

+11
-5
lines changed

5 files changed

+11
-5
lines changed

__init__.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
"""Initialize PyPI Package"""
2-
#pylint: disable=invalid-name
2+
3+
# pylint: disable=invalid-name
34

45
__all__ = ["main"]

__main__.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
"""The main entry point for the project."""
2-
#pylint: disable=invalid-name, import-error
2+
3+
# pylint: disable=invalid-name, import-error
34

45
from main import timer
56

main.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,8 @@
1414
You should have received a copy of the GNU General Public License
1515
along with this program. If not, see <https://www.gnu.org/licenses/>.
1616
"""
17-
#pylint: disable=invalid-name, global-variable-undefined, redefined-outer-name
17+
18+
# pylint: disable=invalid-name, global-variable-undefined, redefined-outer-name
1819

1920
# Import Statements
2021
import time

timer/Timer Example.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,8 @@
1414
You should have received a copy of the GNU General Public License
1515
along with this program. If not, see <https://www.gnu.org/licenses/>.
1616
"""
17-
#pylint: skip-file
17+
18+
# pylint: skip-file
1819

1920
import time
2021

timer/timer.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,8 @@
1414
You should have received a copy of the GNU General Public License
1515
along with this program. If not, see <https://www.gnu.org/licenses/>.
1616
"""
17-
#pylint: skip-file
17+
18+
# pylint: skip-file
1819

1920
import tkinter as tk
2021

@@ -23,6 +24,7 @@
2324

2425
def counter_label(label):
2526
"""Main Time Function"""
27+
2628
def count():
2729
"""Counting Seconds"""
2830
global counter

0 commit comments

Comments
 (0)