Style checkers are a great tool when it comes to organizing your notebooks. I am working in google colab recently and noticed that I couldn't find anything online on a style checker in google colab.
In terms of Python style guide checkers, I found that using Spyder as an IDE one could use Pylint and in terms of Jupiter notebooks I found a post of a question where one suggested using pycodestyle as
!pip install pycodestyle pycodestyle_magic
%load_ext pycodestyle_magic
but this did not work and gave a long error message
17 import copy
18 import pycodestyle as pycodestyle_module
---> 19 from flake8.api import legacy as flake8_module
20 from contextlib import redirect_stdout
21
ModuleNotFoundError: No module named 'flake8'
##Summary## So to summarize how can one import and use a style checker in google colab . Please may you also provide an example of the lines that you may have used in your notebook that worked?