Small edits (#701)

This commit is contained in:
pollfly
2023-11-05 10:30:37 +02:00
committed by GitHub
parent a38dab6fd0
commit 8c4d299efd
17 changed files with 34 additions and 33 deletions

View File

@@ -52,7 +52,10 @@ For files, call `connect_configuration()` before reading the configuration file.
path.
```python
config_file = pipe.connect_configuration(configuration=config_file_path, name="My Configuration", description="configuration for pipeline")
config_file = pipe.connect_configuration(
configuration=config_file_path,
name="My Configuration", description="configuration for pipeline"
)
my_params = json.load(open(config_file,'rt'))
```