mirror of
https://github.com/SpecterOps/Nemesis
synced 2026-06-08 12:36:42 +00:00
a65fd0f18a
* Minor update to make Dapr pubdub components compliant If we want to use K8s the Dapr components for document conversion and workflow monitor would be rejected as they cannot contain underscores. * Fix Dapr configuration names to use K8s-compliant kebab-case --------- Co-authored-by: Lee Chagolla-Christensen <lee@localhost>
Naming Conventions
Projects and libraries should follow Python's PEP8 naming conventions:
Modules should have short, all-lowercase names. Underscores can be used in the module name if it improves readability. Python packages should also have short, all-lowercase names, although the use of underscores is discouraged.
When an extension module written in C or C++ has an accompanying Python module that provides a higher level (e.g. more object oriented) interface, the C/C++ module has a leading underscore (e.g. _socket).