doc: fix references to native python types

This commit is contained in:
Éloi Rivard 2024-04-02 09:27:47 +02:00
parent 09391f0a1d
commit 951ad364f1
No known key found for this signature in database
GPG key ID: 7EDA204EA57DD184

View file

@ -261,8 +261,8 @@ class CoreSettings(BaseModel):
- if :py:data:`None`, everything is logged in the standard output
the log level is :py:data:`~logging.DEBUG` if the :attr:`~canaille.app.configuration.RootSettings.DEBUG` setting is :py:data:`True`, else this is :py:data:`~logging.INFO`
- if this is a dictionnary, it is passed to :func:`logging.config.dictConfig`:
- if this is a string, it is expected to be a file path that will be passed
- if this is a :class:`dict`, it is passed to :func:`logging.config.dictConfig`:
- if this is a :class:`str`, it is expected to be a file path that will be passed
to :func:`logging.config.fileConfig`
For example::