-
Notifications
You must be signed in to change notification settings - Fork 120
Closed
Description
As a python developer and a big fan of podman, I might find this package useful in order to automate some container processes. But now, I see there's a lack of features and I think this is a perfect moment to improve code quality. PEP8 is the official style guide for python and this library could follow those principles in a more strictly way.
i. e.
Before PEP8
def __init__(self, url, base="/v1.24/libpod", *args,
**kwargs): # pylint: disable-msg=W1113
After PEP8
def __init__(
self, url, base="/v1.24/libpod", *args, **kwargs
): # pylint: disable-msg=W1113
Metadata
Metadata
Assignees
Labels
No labels