-
Notifications
You must be signed in to change notification settings - Fork 93
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
Make NI-SWITCH init_with_topology private #674
Conversation
CHANGELOG.md
Outdated
@@ -25,6 +25,7 @@ All notable changes to this project will be documented in this file. | |||
* ### NI-Switch | |||
* #### Added | |||
* #### Changed | |||
* Made init_with_topology a private function. |
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 think you can put this under Removed. One thing we should do as well and we haven't is better document the rationale behind some of these decisions. In most cases it's as simple as saying:
Removed init_with_topology. Clients should use niswitch.Session.init(). See #660.
Of course, we need to be good about explaining things in our issues, which is not always the case. Remember this is all open to the world to see.
CHANGELOG.md
Outdated
@@ -26,6 +26,7 @@ All notable changes to this project will be documented in this file. | |||
* #### Added | |||
* #### Changed | |||
* #### Removed | |||
* Removed init_with_topology. Clients should use niswitch.Session.init(). See #660. |
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.
There is no niswitch.Session.init()
There is niswitch.Session.__init__()
. I think Markdown rendering screwed things up. You can change that to
Clients should use niswitch.Session() constructor.
[x ] This contribution adheres to CONTRIBUTING.md.
[x ] I've updated CHANGELOG.md if applicable.
What does this Pull Request accomplish?
Makes the initialization function private for NI-SWITCH
List issues fixed by this Pull Request below, if any.
What testing has been done?
Tox