rosemariafontana commited on
Commit
3c7dcb0
·
verified ·
1 Parent(s): 5d10f18

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -87,7 +87,7 @@ class Planting(BaseModel):
87
  crop: List[str] = Field(..., title="Crop", description="A list of the crops in this planting")
88
  variety: List[str] = Field(..., title="Variety", description="A list of the crop varieties in this planting")
89
  logs: List[Log] = Field(..., title="Logs", description="A list of all the logs that are associated with the farm activities")
90
- soil: List[Soil] = Field(..., title="Soil", description="Information about the soil associated with or observed during the time of this planting")
91
  harvestYield: Yield = Field(..., title="Yield", description="Quantitative and qualitative observations regarding the yield of harvest")
92
 
93
  class FarmActivities(BaseModel):
 
87
  crop: List[str] = Field(..., title="Crop", description="A list of the crops in this planting")
88
  variety: List[str] = Field(..., title="Variety", description="A list of the crop varieties in this planting")
89
  logs: List[Log] = Field(..., title="Logs", description="A list of all the logs that are associated with the farm activities")
90
+ soil: Soil = Field(..., title="Soil", description="Information about the soil associated with or observed during the time of this planting")
91
  harvestYield: Yield = Field(..., title="Yield", description="Quantitative and qualitative observations regarding the yield of harvest")
92
 
93
  class FarmActivities(BaseModel):