Skip to content

Rename self-invented __magick__ attributes as they are violation of PEP8

Using self-made __magick__ methods is PEP8 violation.

https://peps.python.org/pep-0008/

__double_leading_and_trailing_underscore__: “magic” objects or attributes that live in user- controlled namespaces. E.g. __init__, __import__ or __file__. Never invent such names; only use them as documented.

This merge request renames all self invented __names__ to _single_underscore.

Also renamed some of the methods of the DockerRun to more descriptive names. (bind_mount -> add_bind_mount)

Edited by Rémi Duraffort

Merge request reports