Skip to content

Commit

Permalink
remove prints
Browse files Browse the repository at this point in the history
  • Loading branch information
nllong committed Jun 13, 2024
1 parent 752b463 commit d97a30c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
1 change: 0 additions & 1 deletion pyseed/apibase.py
Original file line number Diff line number Diff line change
Expand Up @@ -326,7 +326,6 @@ def _construct_payload(self, params):
"""
if getattr(self, 'use_auth', None) and not getattr(self, 'auth', None):
self.auth = self._get_auth()
print(self.auth)
return super(UserAuthMixin, self)._construct_payload(params)


Expand Down
3 changes: 2 additions & 1 deletion tests/test_seed_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,8 @@
# Local Imports
from pyseed.seed_client import SeedClient

ORGANIZATION_ID = 23
# For CI the test org is 1, but for local testing it may be different
ORGANIZATION_ID = 1


@pytest.mark.integration
Expand Down

0 comments on commit d97a30c

Please sign in to comment.