Skip to content

Commit 9bba9b0

Browse files
committed
pre-commit format fix
1 parent 68d3cf7 commit 9bba9b0

File tree

1 file changed

+2
-2
lines changed
  • ports/espressif/common-hal/sdioio

1 file changed

+2
-2
lines changed

ports/espressif/common-hal/sdioio/SDCard.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ void common_hal_sdioio_sdcard_construct(sdioio_sdcard_obj_t *self,
6363
}
6464

6565
// max 40Mhz frequency
66-
mp_arg_validate_int_max(frequency,40000000,MP_QSTR_frequency);
66+
mp_arg_validate_int_max(frequency, 40000000, MP_QSTR_frequency);
6767
ESP_LOGI(TAG, "Using slot %d", sd_slot);
6868
self->slot = (uint8_t)sd_slot;
6969
esp_err_t err = ESP_OK;
@@ -123,7 +123,7 @@ void common_hal_sdioio_sdcard_construct(sdioio_sdcard_obj_t *self,
123123
claim_pin(data[2]);
124124
claim_pin(data[3]);
125125
}
126-
126+
127127
ESP_LOGI(TAG, "Initialized SD card with ID %d:%d-%s",
128128
self->card.cid.mfg_id, self->card.cid.oem_id, self->card.cid.name);
129129

0 commit comments

Comments
 (0)