We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In Short
The first command in the In Short section states to create the input path by:
import adopt_net0 as adopt import json from pathlib import Path input_data_path = "path_to_your_input_data_folder" adopt.create_optimization_templates(input_data_path)
I believe the input path file should be specified using the pathlib library
pathlib
input_data_path = Path("path_to_your_input_data_folder")
Else you run into the following error:
with open(input_data_path / "Topology.json", "r") as json_file: topology = json.load(json_file)
TypeError: unsupported operand type(s) for /: 'str' and 'str'
The text was updated successfully, but these errors were encountered:
JeanWi
Successfully merging a pull request may close this issue.
The first command in the In Short section states to create the input path by:
I believe the input path file should be specified using the
pathlib
libraryElse you run into the following error:
The text was updated successfully, but these errors were encountered: