-
Notifications
You must be signed in to change notification settings - Fork 55
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
server can override and add custom command mappings #177
base: master
Are you sure you want to change the base?
server can override and add custom command mappings #177
Conversation
361fa63
to
4d8398a
Compare
@pohmelie do you have any suggestions to get this merged? |
You need to move this from draft. "Draft" mode implies you are not ready for code review. |
Done! 🍻 |
setup.py
Outdated
from setuptools import setup | ||
|
||
if __name__ == "__main__": | ||
setup() |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Actually we do not need setupy.py, because of pyproject.toml file
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I originally thought I needed it for Nix but I found an override. I'll remove the commit
@@ -660,6 +660,7 @@ def __init__( | |||
data_ports=None, | |||
encoding="utf-8", | |||
ssl=None, | |||
extra_commands_mapping={}, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This mapping should be added to documentation
4d8398a
to
1308c03
Compare
What do these changes do?
The
Server
class can override and add custom command mappings. I'm submitting this as a draft PR without unit tests to open the conversation around if this is a desirable change that will be accepted.Are there changes in behavior for the user?
No
Related issue number
None
Checklist