Skip to content

Commit f706906

Browse files
committed
chore: Update spelling from co-pilot suggestion
1 parent 5dabd57 commit f706906

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

roborock/devices/traits/v1/clean_summary.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ def _parse_clean_record_response(cls, response: common.V1ResponseData) -> CleanR
6060
records = [CleanRecord.from_dict(rec) for rec in response]
6161
final_record = records[-1]
6262
try:
63-
# This code is semi-presumptions - so it is put in a try finally to be safe.
63+
# This code is semi-presumptuous - so it is put in a try finally to be safe.
6464
final_record.begin = records[0].begin
6565
final_record.begin_datetime = records[0].begin_datetime
6666
final_record.start_type = records[0].start_type

roborock/version_1_apis/roborock_client_v1.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -207,7 +207,7 @@ async def get_clean_record(self, record_id: int) -> CleanRecord | None:
207207
records = [CleanRecord.from_dict(rec) for rec in record]
208208
final_record = records[-1]
209209
try:
210-
# This code is semi-presumptions - so it is put in a try finally to be safe.
210+
# This code is semi-presumptuous - so it is put in a try finally to be safe.
211211
final_record.begin = records[0].begin
212212
final_record.begin_datetime = records[0].begin_datetime
213213
final_record.start_type = records[0].start_type

0 commit comments

Comments
 (0)