Skip to content

Bugfix: Error printing lists of values #12

New issue

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

Merged
merged 4 commits into from
May 7, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions HISTORY.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
=======
History
=======
2025.5.7: Bugfix: Error printing lists of values
* Fixed a problem printing variables that were a list of floats.

2023.11.15: Improved handling of boolean options
* Properly support using boolean options on the commandline as just a flag to
indicate True.
Expand Down
5 changes: 3 additions & 2 deletions control_parameters_step/control_parameters.py
Original file line number Diff line number Diff line change
Expand Up @@ -346,10 +346,11 @@ def run(self):
self.set_variable(dest, value)

if isinstance(value, list):
tmp = [str(v) for v in value]
if len(value) > 5:
table["Value"].append("\n".join(value[0:5]) + "\n...")
table["Value"].append("\n".join(tmp[0:5]) + "\n...")
else:
table["Value"].append("\n".join(value))
table["Value"].append("\n".join(tmp))
else:
table["Value"].append(value)

Expand Down
3 changes: 1 addition & 2 deletions control_parameters_step/control_parameters_parameters.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
# -*- coding: utf-8 -*-
"""Control parameters for the Control Parameters step in a SEAMM flowchart
"""
"""Control parameters for the Control Parameters step in a SEAMM flowchart"""

import logging
import seamm
Expand Down
4 changes: 2 additions & 2 deletions versioneer.py
Original file line number Diff line number Diff line change
Expand Up @@ -339,9 +339,9 @@ def get_config_from_root(root):
# configparser.NoOptionError (if it lacks "VCS="). See the docstring at
# the top of versioneer.py for instructions on writing your setup.cfg .
setup_cfg = os.path.join(root, "setup.cfg")
parser = configparser.SafeConfigParser()
parser = configparser.ConfigParser()
with open(setup_cfg, "r") as f:
parser.readfp(f)
parser.read_file(f)
VCS = parser.get("versioneer", "VCS") # mandatory

def get(parser, name):
Expand Down
Loading