Skip to content

Commit

Permalink
Chore/final edits (#89)
Browse files Browse the repository at this point in the history
  • Loading branch information
alanag13 committed Apr 21, 2020
1 parent c09bf0d commit 7d86aa5
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
6 changes: 6 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,12 @@
python_requires=">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, <4",
install_requires=["requests>=2.3"],
license="MIT",
url="https://github.com/code42/py42",
project_urls={
"Issue Tracker": "https://github.com/code42/py42/issues",
"Documentation": "https://py42docs.code42.com/",
"Source Code": "https://github.com/code42/py42",
},
include_package_data=True,
zip_safe=False,
extras_require={
Expand Down
4 changes: 2 additions & 2 deletions src/py42/_internal/clients/detection_list_user.py
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ def add_cloud_alias(self, user_id, alias):
"""Add a cloud alias.
Args:
user_id (str or int): The user_id whose alias(es) need to be updated.
user_id (str or int): The user_id whose alias needs to be updated.
alias (str): An alias to be added.
Returns:
Expand All @@ -173,7 +173,7 @@ def remove_cloud_alias(self, user_id, alias):
"""Remove one or more cloud alias.
Args:
user_id (str or int): The user_id whose alias(es) need to be removed.
user_id (str or int): The user_id whose alias needs to be removed.
alias (str): An alias to be removed.
Returns:
Expand Down
2 changes: 1 addition & 1 deletion src/py42/modules/detectionlists.py
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ def remove_user_cloud_alias(self, user_id, alias):
"""Remove a cloud alias from a user.
Args:
user_id (str or int): The user_id whose alias(es) need to be removed.
user_id (str or int): The user_id whose alias needs to be removed.
alias (str): The alias to be removed.
Returns:
Expand Down

0 comments on commit 7d86aa5

Please sign in to comment.