From: Daniele Varrazzo Date: Tue, 24 Aug 2021 14:47:45 +0000 (+0200) Subject: Drop TODO point on which I'm wrong X-Git-Tag: 3.0.beta1~51 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=6051f34f93698312ca262bdfacbc0a865dc014d3;p=thirdparty%2Fpsycopg.git Drop TODO point on which I'm wrong --- diff --git a/psycopg/psycopg/_column.py b/psycopg/psycopg/_column.py index 4e6a75b04..daeb9283d 100644 --- a/psycopg/psycopg/_column.py +++ b/psycopg/psycopg/_column.py @@ -127,10 +127,7 @@ class Column(Sequence[Any]): @property def scale(self) -> Optional[int]: - """The number of digits after the decimal point if available. - - TODO: probably better than precision for datetime objects? review. - """ + """The number of digits after the decimal point if available.""" if self._type and self._type.name == "numeric": fmod = self._data.fmod - 4 if fmod >= 0: