googleapis / google-cloud-datastore

Low-level, Protobuf-based Java and Python client libraries for Cloud Datastore. Check out google-cloud-java and google-cloud-python first!
https://cloud.google.com/datastore
Apache License 2.0
213 stars 133 forks source link

change to separate lines from one single line import pylint #271

Closed slowy07 closed 3 years ago

slowy07 commented 3 years ago

example of lint incorrect code:

import os, sys

correct:

import os
import sys