Skip to content

Commit f6575be

Browse files
type checking enabled
1 parent 5037d24 commit f6575be

File tree

2 files changed

+1
-9
lines changed

2 files changed

+1
-9
lines changed

random_profile/main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
job_titles = load_txt_file(job_titles_txt)
3838

3939

40-
class RandomProfile:
40+
class RandomProfile(object):
4141
def __init__(self, num: int = 1):
4242
'''
4343
num = Total No. of Name You Want To Print

setup.py

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -5,24 +5,16 @@
55
long_description = fh.read()
66

77
setuptools.setup(
8-
# Here is the module name.
98
name="random_profile",
10-
# version of the module
119
version="1.0.0",
12-
# Name of Author
1310
author="Deepak Raj",
14-
# your Email address
1511
author_email="[email protected]",
16-
# Small Description about module
1712
description="Generate Random Profile",
1813
long_description=long_description,
19-
# Specifying that we are using markdown file for description
2014
long_description_content_type="text/markdown",
21-
# Any link to reach this module, if you have any webpage or github profile
2215
data_files=[('assets', glob('random_profile/assets/*'))],
2316
url="https://github.com/codePerfectPlus/Random-Profile-Generator",
2417
packages=setuptools.find_packages(),
25-
# classifiers like program is suitable for python3, just leave as it is.
2618
classifiers=[
2719
"Programming Language :: Python :: 3",
2820
"License :: OSI Approved :: MIT License",

0 commit comments

Comments
 (0)