We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 36ac2bd commit 6aa4226Copy full SHA for 6aa4226
1 file changed
spynnaker/pyNN/setup_pynn.py
@@ -63,10 +63,11 @@ def install_spynnaker_into(module: ModuleType) -> None:
63
shutil.copyfile(spynnaker_init, pynn_init)
64
65
py_typed = os.path.join(spynnaker_dir, "py.typed")
66
- pynn_typed = os.path.join(spinnaker_dir, "py_typed")
+ pynn_typed = os.path.join(spinnaker_dir, "py.typed")
67
shutil.copyfile(py_typed, pynn_typed)
68
69
print(f"Updated {pynn_init} to be the same as spynnaker.pyNN")
70
+ print(f"Added {pynn_typed}")
71
72
73
def setup_pynn() -> None:
0 commit comments