.. _bad-inline-option: bad-inline-option / I0010 ========================= **Message emitted:** ``Unable to consider inline option %r`` **Description:** *Used when an inline option is either badly formatted or can't be used inside modules.* .. caution:: This message is disabled by default. To enable it, add ``bad-inline-option`` to the ``enable`` option. .. caution:: By default, this message will not fail the execution (pylint will return 0). To make pylint fail for this message use the ``--fail-on=I0010`` option or ``--fail-on=I`` to fail on all enabled informational messages. **Problematic code:** .. literalinclude:: /data/messages/b/bad-inline-option/bad.py :language: python **Correct code:** .. literalinclude:: /data/messages/b/bad-inline-option/good.py :language: python Created by the `main `__ checker.