Skip to content

Commit

Permalink
Merge pull request #12 from icgood/tokens
Browse files Browse the repository at this point in the history
Removed unused pymacaroons dependency
  • Loading branch information
icgood committed Oct 28, 2020
2 parents 165ea7d + 0945406 commit 3f9ddf4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 1 addition & 2 deletions pymapadmin/commands/user.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,7 @@
from ..grpc.admin_pb2 import \
UserData, UserResponse, GetUserRequest, SetUserRequest, DeleteUserRequest

__all__ = ['GetUserCommand', 'SetUserCommand',
'DeleteUserCommand']
__all__ = ['GetUserCommand', 'SetUserCommand', 'DeleteUserCommand']


class UserCommand(ClientCommand[UserStub, RequestT, ResponseT]):
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
include_package_data=True,
packages=find_packages(),
install_requires=[
'grpclib', 'protobuf', 'pymacaroons', 'typing-extensions'],
'grpclib', 'protobuf', 'typing-extensions'],
extras_require={
'optional': ['googleapis-common-protos'],
'build': ['grpcio-tools', 'mypy-protobuf']},
Expand Down

0 comments on commit 3f9ddf4

Please sign in to comment.