Skip to content

Commit

Permalink
Merge pull request #116 from zlatko-minev/115_type_hints
Browse files Browse the repository at this point in the history
115 type hints
  • Loading branch information
ThomasGM4 authored May 27, 2022
2 parents 45ed220 + 1ff6a10 commit 84a2c73
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 12 deletions.
4 changes: 2 additions & 2 deletions pyEPR/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@
@author: Zlatko Minev, Zaki Leghas, ... and the pyEPR team
@site: https://github.com/zlatko-minev/pyEPR
@license: "BSD-3-Clause"
@version: 0.8.5.4
@version: 0.8.5.5
@maintainer: Zlatko K. Minev and Asaf Diringer
@email: [email protected]
@url: https://github.com/zlatko-minev/pyEPR
Expand All @@ -86,7 +86,7 @@
"Will Livingston", "Steven Touzard"
]
__license__ = "BSD-3-Clause"
__version__ = "0.8.5.4"
__version__ = "0.8.5.5"
__maintainer__ = "Zlatko K. Minev and Asaf Diringer"
__email__ = "[email protected]"
__url__ = r'https://github.com/zlatko-minev/pyEPR'
Expand Down
18 changes: 9 additions & 9 deletions pyEPR/project_info.py
Original file line number Diff line number Diff line change
Expand Up @@ -161,15 +161,15 @@ def data(self):
return {str(opt): self[opt] for opt in diss_opt}

def __init__(self,
project_path: str = None,
project_name: str = None,
design_name: str = None,
setup_name: str = None,
dielectrics_bulk: list[str] = None,
dielectric_surfaces: list[str] = None,
resistive_surfaces: list[str] = None,
seams: list[str] = None,
do_connect: bool = True):
project_path: str = None,
project_name: str = None,
design_name: str = None,
setup_name: str = None,
dielectrics_bulk: list =None,
dielectric_surfaces: list = None,
resistive_surfaces: list= None,
seams: list= None,
do_connect: bool = True):
"""
Keyword Arguments:
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@

setup(
name='pyEPR-quantum',
version='0.8.5.4',
version='0.8.5.5',
description=doclines[0],
long_description=long_description,
long_description_content_type="text/markdown",
Expand Down

0 comments on commit 84a2c73

Please sign in to comment.