[PYTHON] When I get an error with Pylint in Atom on Windows

About this article

Since errors occur due to various causes, I will write it as a memorandum.

Is it a malfunction? If you think

Is the PATH to pylint.exe correct?

Past article: Pylint on Windows Atom

Is there a problem with the comment block?

Cause

An error will occur if the comment block contains \.

def your_function():
  """
Like this\Is included and linter-pylint does not work
  """
  pass

Solution ①

def your_function():
  """
Like this\\Then it works.
  """
  pass

Solution ②

def your_function():
  r"""
Set as a raw string like this\Then it works.
  """
  pass

Recommended Posts

When I get an error with Pylint in Atom on Windows
When I get an error with PyInstaller
I get an error when I put opencv in pyautoGUI
I get an error with import pandas.
I get an error when trying to install maec 4.0.1.0 with pip
Pylint on Windows Atom
I got an error when saving with OpenCV
I get an error with all yum commands
I got an error when I tried to process luigi in parallel on windows, but the solution
In the Chainer tutorial, I get an error when importing a package. (mock)
I get an Import Error in Python Beautiful Soup
I got an error when I put opencv in python3 with Raspberry Pi [Remedy]
I get an error when trying meinheld + WebSocket + mongodb
When you get an error in python scraping (requests)
I got an error when using Tensorboard with Pytorch
I want to get an error message in Japanese with django Password Change Form
I got an error when pip install pandas on Mac, so I dealt with it
I get an error when I try to raise Python to 3 series using pyenv on Catalina
Let's get started with Python ~ Building an environment on Windows 10 ~
I get [Error 2055] when trying to connect to MySQL on Heroku
I get an ImportError on appengine_config.py
I got an error when pip install tweepy on macOS Sierra, so I dealt with it
Resolved an error when putting pygame in python3 on raspberry pi
# Solution when pip install gives an error when using Anaconda on Windows 10
I got an SSL Error when I installed Anaconda in a new environment, so I solved it (Windows10, Anaconda3-2019.10)
I get an OS Error: [Errno 8] Exec format error when running a Flask application with a python command
I get an error when I put a Python plugin in Visual Studio Code under the pyenv environment
I get a UnicodeDecodeError when running with mod_wsgi
Rollback processing when an error occurs with fabric
Eliminates SSL error when PIP Install on Windows.
Workaround if you get an error when trying to install PySide with pip
When I name the file flask.py in Flask, I get Import Error: cannot import name'Flask'
I got an error when trying to run Hello World in Go language
What to do if you get an error when installing python with pyenv
If you get a long error when tabbing an interactive shell with Anaconda
If you get stuck when building pycocoapi on Windows
I tried to build an environment with WSL + Ubuntu + VS Code in a Windows environment
What to do if you get an OpenSSL error when installing Python 2 with pyenv
What to do if you get an error when importing matplotlib in Python (Mac)
When I try to import pandas on macOS I get the error No module named'_bz2'
When I try to install mysqlclient with Django, I get error: command'gcc' failed with exit status 1.
Create an OpenAI Gym environment with bash on Windows 10
psql: I ran into an error with an invalid option --'''.
For those who are in trouble with an error when pip install xg boost
What to do if you get an Import Error when importing matplotlib with Jupyter
A memorandum when an error occurs with pip install
When I try to update the data on DynamoDB with Python (boto3), I get "ExpressionAttributeNames contains invalid key: Syntax error; key: <key name>"
What to do when you get an error saying "Name resolution temporarily failed" on linux
When I installed python on macOS and used it, I got an error when I put an https connection
[Solution] When I try to connect to CloudSQL with GAE, I get an ImportError only when using dev_appserver.
What to do if you get an error when running "certbot renew" in CakePHP environment
What to do if you get an Undefined error when trying to use pip with pyenv
I got a Value Error when using JUMAN ++ with PyKNP
When I made CaboCha usable with python3, I got stuck (Windows 10)
I got an error in vim and zsh in Python 3.7 series
After installing CentOS8 with VirtualBox, an error occurs when restarting
Install Jupiter Notebook on Windows with pip in proxy environment
What to do when an error occurs with import _ssl
A note when I can't open Jupyter Notebook on Windows
Print PDF in Python on Windows: Use an external application
I tried to create an article in Wiki.js with SQLAlchemy