I am working on a python module, and it has a portion that is a server. The server request handler will inherit from http.server.BaseHTTPRequestHandler. The thing is that the BaseHTTPRequestHandler follows the snake_case, while my module follows camelCase. This will cause a mix of snake_case and camelCase in my classes. Is this ok? I want my code to be as clean as possible, but I have to use BaseHTTPRequestHandler. Thanks in advance!