Skip to content

Commit f93f502

Browse files
Merge pull request #198 from Dog-Face-Development/deepsource-transform-531b4fbf
2 parents 7dafea9 + 0c46fee commit f93f502

File tree

6 files changed

+13
-7
lines changed

6 files changed

+13
-7
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=import-error, invalid-name
2+
3+
# pylint: disable=import-error, 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
"""Main entry point for the application."""
2-
#pylint: disable=import-error, invalid-name
2+
3+
# pylint: disable=import-error, invalid-name
34

45
from elements import element_print_out
56

elements.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
"""
2-
Periodic Table Info - Print all the elements in the Periodic Table of the Elements.
2+
Periodic Table Info - Print all the elements in the Periodic Table of the Elements.
33
Copyright (C) 2017-2024 Dog Face Development Co.
44
55
This program is free software: you can redistribute it and/or modify
@@ -14,6 +14,7 @@
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+
1718
# pylint: disable=import-error, invalid-name, too-many-statements, duplicate-code
1819

1920
# This prints all of the elements to the screen. And then presents the enter field.

main.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
"""
2-
Periodic Table Info - Print all the elements in the Periodic Table of the Elements.
2+
Periodic Table Info - Print all the elements in the Periodic Table of the Elements.
33
Copyright (C) 2017-2024 Dog Face Development Co.
44
55
This program is free software: you can redistribute it and/or modify
@@ -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=import-error, invalid-name, duplicate-code
17+
18+
# pylint: disable=import-error, invalid-name, duplicate-code
1819

1920
# This is the main program file for Periodic Table Info.
2021
# Imports all other files.

print.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
"""
2-
Periodic Table Info - Print all the elements in the Periodic Table of the Elements.
2+
Periodic Table Info - Print all the elements in the Periodic Table of the Elements.
33
Copyright (C) 2017-2024 Dog Face Development Co.
44
55
This program is free software: you can redistribute it and/or modify
@@ -14,6 +14,7 @@
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+
1718
# pylint: disable=import-error, invalid-name, duplicate-code
1819

1920
# Prints the elements to the screen

setup.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
"""Setup file for the Periodic Table Info package."""
2-
#pylint: disable=duplicate-code
2+
3+
# pylint: disable=duplicate-code
34

45
from setuptools import setup
56

0 commit comments

Comments
 (0)