You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -71,13 +71,13 @@
71
71
```python
72
72
class PersonDataSet(DataSet):
73
73
"""Personal Information Dataset
74
-
74
+
75
75
This dataset collects basic personal information.
76
76
"""
77
77
name = StringItem("Full Name", default="John Doe")
78
78
age = IntItem("Age", default=30)
79
79
active = BoolItem("Account Active", default=True)
80
-
80
+
81
81
dataset = PersonDataSet()
82
82
html_output = dataset.to_html() # Generate HTML representation
83
83
```
@@ -1019,7 +1019,7 @@ New features:
1019
1019
1020
1020
Bug fixes:
1021
1021
1022
-
* disthelpers.prepend_module_to_path: unload modules which were already imported to be able to replace them by other versions (mostly `guidata` should be concerned by this if the function is used -as it should be-in package's __init__.py script)
1022
+
* disthelpers.prepend_module_to_path: unload modules which were already imported to be able to replace them by other versions (mostly `guidata` should be concerned by this if the function is used -as it should be-in package's `__init__`.py script)
1023
1023
1024
1024
### Version 1.5.1 ###
1025
1025
@@ -1159,7 +1159,7 @@ Other changes:
1159
1159
* guidata.utils.utf8_to_unicode: translated error message in english
1160
1160
* Add support for'int'in hdf5 save function
1161
1161
* guidata.dataset/Numeric items (FloatItem, IntItem): added option 'unit' (automatically add suffix ' (unit)' to label in edit mode and suffix ' unit' to value in read-only mode)
0 commit comments