Skip to content

Commit 3ab8cf0

Browse files
committed
Add Missing Type Hints
1 parent 9c02105 commit 3ab8cf0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

cppython/project.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,7 @@ def configuration(self) -> ProjectConfiguration:
185185
return self._configuration
186186

187187
@property
188-
def project(self):
188+
def project(self) -> PEP621:
189189
"""
190190
The pyproject project table
191191
"""
@@ -198,7 +198,7 @@ def cppython(self):
198198
"""
199199
return self._modified_cppython_data
200200

201-
def download(self):
201+
def download(self) -> None:
202202
"""
203203
Download the generator tooling if required
204204
"""

0 commit comments

Comments
 (0)