Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion __init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Initialize PyPI Package"""
#pylint: disable=invalid-name

# pylint: disable=invalid-name

__all__ = ["main"]
3 changes: 2 additions & 1 deletion __main__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
"""The main entry point for the project."""
#pylint: disable=invalid-name, import-error

# pylint: disable=invalid-name, import-error

from main import timer

Expand Down
3 changes: 2 additions & 1 deletion main.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@
You should have received a copy of the GNU General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
"""
#pylint: disable=invalid-name, global-variable-undefined, redefined-outer-name

# pylint: disable=invalid-name, global-variable-undefined, redefined-outer-name

# Import Statements
import time
Expand Down
3 changes: 2 additions & 1 deletion timer/Timer Example.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@
You should have received a copy of the GNU General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
"""
#pylint: skip-file

# pylint: skip-file

import time

Expand Down
4 changes: 3 additions & 1 deletion timer/timer.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@
You should have received a copy of the GNU General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
"""
#pylint: skip-file

# pylint: skip-file

import tkinter as tk

Expand All @@ -23,6 +24,7 @@

def counter_label(label):
"""Main Time Function"""

def count():
"""Counting Seconds"""
global counter
Expand Down
Loading