diff options
| author | Elena ``of Valhalla'' Grandi <valhalla@trueelena.org> | 2021-09-17 09:21:13 +0200 | 
|---|---|---|
| committer | Elena ``of Valhalla'' Grandi <valhalla@trueelena.org> | 2021-09-17 09:21:13 +0200 | 
| commit | 01c67e12934c6cf3b270446306e3fd41b7f467ab (patch) | |
| tree | 4953c4510557d79bab68dfa9624cfde3b486a100 | |
| parent | f3a4612901b9e2ce6ad5ad501edfcc887b717587 (diff) | |
Fix docstring for LesanaDecimal
| -rw-r--r-- | lesana/types.py | 5 | 
1 files changed, 4 insertions, 1 deletions
diff --git a/lesana/types.py b/lesana/types.py index bfd8612..101e957 100644 --- a/lesana/types.py +++ b/lesana/types.py @@ -181,7 +181,10 @@ class LesanaFloat(LesanaType):  class LesanaDecimal(LesanaType):      """ -    A floating point number +    A fixed point number + +    Because of a limitation of the yaml format, these should be stored +    quoted as a string, to avoid being loaded back as floats.      """      name = "decimal"  | 
