Skip to content

Commit

Permalink
feat: Remove 'lai_vinculadas' field and update latitude field properties
Browse files Browse the repository at this point in the history
This change removes the 'lai_vinculadas' field from the FIELDS dictionary and updates the properties of the 'latitude_coordenadas' and 'latitude_da_estacao' fields:

- Removes the 'lai_vinculadas' field (field ID 481) from the FIELDS dictionary.
- Updates the 'latitude_coordenadas' field to remove the '_dtype' parameter.
- Updates the 'latitude_da_estacao' field to remove the '_dtype' parameter.

These changes simplify the field configuration and ensure consistent handling of the latitude-related fields.
  • Loading branch information
ronaldokun committed Aug 7, 2024
1 parent 0dca934 commit 39f2dd6
Showing 1 changed file with 4 additions and 8 deletions.
12 changes: 4 additions & 8 deletions fiscaliza/attrs.py
Original file line number Diff line number Diff line change
Expand Up @@ -155,14 +155,10 @@
],
),
# "lai_vinculadas": SimpleField(481, "LAI vinculadas"),
"latitude_coordenadas": SimpleField(170, "Latitude (º):", True, _dtype="float"),
"latitude_da_estacao": SimpleField(
191, "Latitude da estação:", True, _dtype="float"
),
"longitude_coordenadas": SimpleField(171, "Longitude (º):", True, _dtype="float"),
"longitude_da_estacao": SimpleField(
192, "Longitude da estação:", True, _dtype="float"
),
"latitude_coordenadas": SimpleField(170, "Latitude (º):", True),
"latitude_da_estacao": SimpleField(191, "Latitude da estação:", True),
"longitude_coordenadas": SimpleField(171, "Longitude (º):", True),
"longitude_da_estacao": SimpleField(192, "Longitude da estação:", True),
"motivo_de_lai": FieldWithOptions(
164,
"Motivo de LAI:",
Expand Down

0 comments on commit 39f2dd6

Please sign in to comment.