mirror of
https://gitlab.com/dslackw/slpkg.git
synced 2024-12-26 09:58:31 +01:00
Added email
This commit is contained in:
parent
0d5bd3fe85
commit
3f982aa89e
1 changed files with 3 additions and 1 deletions
|
@ -10,10 +10,12 @@ class Version:
|
|||
self.license: str = 'MIT License'
|
||||
self.author: str = 'Dimitris Zlatanidis (dslackw)'
|
||||
self.homepage: str = 'https://dslackw.gitlab.io/slpkg'
|
||||
self.email: str = 'dslackw@gmail.com'
|
||||
|
||||
def view(self) -> None:
|
||||
""" Prints the version. """
|
||||
print(f'Version: {self.version}\n'
|
||||
f'Author: {self.author}\n'
|
||||
f'License: {self.license}\n'
|
||||
f'Homepage: {self.homepage}')
|
||||
f'Homepage: {self.homepage}\n'
|
||||
f'Email: {self.email}')
|
||||
|
|
Loading…
Reference in a new issue