Skip to content

Commit 84a2c73

Browse files
authored
Merge pull request #116 from zlatko-minev/115_type_hints
115 type hints
2 parents 45ed220 + 1ff6a10 commit 84a2c73

File tree

3 files changed

+12
-12
lines changed

3 files changed

+12
-12
lines changed

pyEPR/__init__.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@
5959
@author: Zlatko Minev, Zaki Leghas, ... and the pyEPR team
6060
@site: https://github.com/zlatko-minev/pyEPR
6161
@license: "BSD-3-Clause"
62-
@version: 0.8.5.4
62+
@version: 0.8.5.5
6363
@maintainer: Zlatko K. Minev and Asaf Diringer
6464
6565
@url: https://github.com/zlatko-minev/pyEPR
@@ -86,7 +86,7 @@
8686
"Will Livingston", "Steven Touzard"
8787
]
8888
__license__ = "BSD-3-Clause"
89-
__version__ = "0.8.5.4"
89+
__version__ = "0.8.5.5"
9090
__maintainer__ = "Zlatko K. Minev and Asaf Diringer"
9191
__email__ = "[email protected]"
9292
__url__ = r'https://github.com/zlatko-minev/pyEPR'

pyEPR/project_info.py

+9-9
Original file line numberDiff line numberDiff line change
@@ -161,15 +161,15 @@ def data(self):
161161
return {str(opt): self[opt] for opt in diss_opt}
162162

163163
def __init__(self,
164-
project_path: str = None,
165-
project_name: str = None,
166-
design_name: str = None,
167-
setup_name: str = None,
168-
dielectrics_bulk: list[str] = None,
169-
dielectric_surfaces: list[str] = None,
170-
resistive_surfaces: list[str] = None,
171-
seams: list[str] = None,
172-
do_connect: bool = True):
164+
project_path: str = None,
165+
project_name: str = None,
166+
design_name: str = None,
167+
setup_name: str = None,
168+
dielectrics_bulk: list =None,
169+
dielectric_surfaces: list = None,
170+
resistive_surfaces: list= None,
171+
seams: list= None,
172+
do_connect: bool = True):
173173
"""
174174
Keyword Arguments:
175175

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131

3232
setup(
3333
name='pyEPR-quantum',
34-
version='0.8.5.4',
34+
version='0.8.5.5',
3535
description=doclines[0],
3636
long_description=long_description,
3737
long_description_content_type="text/markdown",

0 commit comments

Comments
 (0)