diff options
| author | Jules Laplace <julescarbon@gmail.com> | 2019-02-20 18:21:03 +0100 |
|---|---|---|
| committer | Jules Laplace <julescarbon@gmail.com> | 2019-02-20 18:21:03 +0100 |
| commit | 1ef0b07c0bbd779f3ab9b618a0edb768b927816e (patch) | |
| tree | 64d555f009a3aa5d1bff364e5adcbe75236a60ae /megapixels | |
| parent | 23ead25b1301444602c5be8ecceaf25cf88a743f (diff) | |
add country to paper model
Diffstat (limited to 'megapixels')
| -rw-r--r-- | megapixels/app/models/citations.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/megapixels/app/models/citations.py b/megapixels/app/models/citations.py index b0e02fc7..4c3c6738 100644 --- a/megapixels/app/models/citations.py +++ b/megapixels/app/models/citations.py @@ -14,4 +14,5 @@ class Paper(DataClassJSONMixin): loc: str = '' loc_type: str = '' lat: float = 0.0 - lng: float = 0.0
\ No newline at end of file + lng: float = 0.0 + country: str = '' |
