python/traitlets: Wrap README at 72 columns.

Signed-off-by: B. Watson <yalhcru@gmail.com>
This commit is contained in:
B. Watson 2022-03-14 11:24:49 -04:00
parent 94381879a0
commit 81725b6e6a
1 changed files with 4 additions and 4 deletions

View File

@ -1,10 +1,10 @@
Traitlets is a pure Python library enabling:
* the enforcement of strong typing for attributes of Python objects (typed
attributes are called "traits")
* the enforcement of strong typing for attributes of Python objects
(typed attributes are called "traits")
* notifications on changes of trait attributes
* automatic validation and coercion of trait attributes when attempting a
change
* automatic validation and coercion of trait attributes when attempting
a change
Its implementation relies on the descriptor pattern.