Skip to content

Commit bdfa2c3

Browse files
ESS-3357 Docs: fix text and alignment on python code block (#136)
1 parent eadd8a0 commit bdfa2c3

1 file changed

Lines changed: 5 additions & 4 deletions

File tree

docs/user_guide/access_data.rst

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -70,12 +70,13 @@ or contact support to restore it.
7070

7171
.. warning::
7272

73-
Regarding boolean values (true and false). A change in DRIO affects data ingested after approximately 10th of March 2025 10:00, booleans are no longer automatically converted to integer values 1 and 0.
74-
If this conversion is desried, it can be done manually where required by using the following code after downloading the data as shown above:
73+
We introduced a breaking change in DataReservoir, which affects data ingested after approximately 10th of March 2025 10:00 CET.
74+
With this change, booleans are no longer automatically converted to integer values 1 and 0. If this conversion is desired,
75+
it can be done manually where required by using the following code after downloading the data, as shown below:
7576

7677
.. code-block:: python
77-
78-
timeseries.replace({True: 1, 'true': 1, 'True': 1, False: 0, 'false': 0, 'False': 0}, inplace=True)
78+
79+
timeseries.replace({True: 1, 'true': 1, 'True': 1, False: 0, 'false': 0, 'False': 0}, inplace=True)
7980
8081
.. tip::
8182
When handling high-frequency data and/or extended timespans, it is crucial to consider memory usage.

0 commit comments

Comments
 (0)