Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Update field types in attrs.py
This change updates the data types of several fields in the `FIELDS` dictionary in `attrs.py`: 1. Changes the data type of `frequencia_inicial` and `frequencia_final` fields from `SimpleField` to `SimpleField` with `_dtype="float"`. 2. Changes the data type of `horas_de_conclusao`, `horas_de_deslocamento`, `horas_de_execucao`, and `horas_de_preparacao` fields from `SimpleField` with `_dtype="int"` to `SimpleField` with `_dtype="float"`. 3. Changes the data type of `latitude_coordenadas`, `latitude_da_estacao`, `longitude_coordenadas`, and `longitude_da_estacao` fields from `SimpleField` to `SimpleField` with `_dtype="float"`. These changes ensure that the fields are properly handled as floating-point values, improving the overall data integrity and consistency in the application.
- Loading branch information