Skip to content

Commit

Permalink
Merge pull request #12 from CIAT-DAPA/develop
Browse files Browse the repository at this point in the history
added some coments
  • Loading branch information
CarlosNasayo authored Jul 19, 2023
2 parents 4f195ad + 2ea21e2 commit b699ea5
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions src/ormWP/models/adm1.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,16 +11,16 @@ class Adm1(Document):
name: str
Name of the adm1. required.
ext_id: str
External identifier for the accession. Mandatory and unique.
External identifier for the Adm1. Mandatory and unique.
traced: array
array with created time, updated and a active
Methods:
-------
save()
Saves the Accession object to the database.
Saves the Adm1 object to the database.
delete()
Deletes the Accession object from the database.
Deletes the Adm1 object from the database.
"""

meta = {
Expand Down
4 changes: 2 additions & 2 deletions src/ormWP/models/adm2.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@ class Adm2(Document):
Methods:
-------
save()
Saves the Country object to the database.
Saves the Adm2 object to the database.
delete()
Deletes the Country object from the database.
Deletes the Adm2 object from the database.
"""

meta = {
Expand Down
4 changes: 2 additions & 2 deletions src/ormWP/models/adm3.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@ class Adm3(Document):
Methods:
-------
save()
Saves the Crop object to the database.
Saves the Adm3 object to the database.
delete()
Deletes the Crop object from the database.
Deletes the Adm3 object from the database.
"""

meta = {
Expand Down

0 comments on commit b699ea5

Please sign in to comment.