Skip to content

Commit

Permalink
remove bad print statement (#14)
Browse files Browse the repository at this point in the history
* this definitely should not be printing

* this also definitely should not be printing
  • Loading branch information
rmaynardap authored Mar 30, 2023
1 parent a8414f2 commit 126b266
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion tfworker/authenticators/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@

class AuthenticatorsCollection(collections.abc.Mapping):
def __init__(self, state_args, **kwargs):
print(state_args)
self._authenticators = dict(
[(auth.tag, auth(state_args, **kwargs)) for auth in ALL]
)
Expand Down
1 change: 0 additions & 1 deletion tfworker/authenticators/aws.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@ class AWSAuthenticator(BaseAuthenticator):

def __init__(self, state_args, **kwargs):
super(AWSAuthenticator, self).__init__(state_args, **kwargs)
print(state_args)
self.bucket = self._resolve_arg("backend_bucket")
if not self.bucket:
raise MissingArgumentException("backend_bucket is a required argument")
Expand Down

0 comments on commit 126b266

Please sign in to comment.