Skip to content

Commit

Permalink
fix: rm print()
Browse files Browse the repository at this point in the history
  • Loading branch information
pennersr committed May 13, 2024
1 parent 73d9fb1 commit aa72246
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion allauth/socialaccount/providers/dummy/provider.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@
class DummyAccount(ProviderAccount):
def to_str(self):
dflt = super().to_str()
print(self.account.extra_data)
first_name = self.account.extra_data.get("first_name") or ""
last_name = self.account.extra_data.get("last_name") or ""
name = " ".join([first_name, last_name]).strip() or dflt
Expand Down
1 change: 0 additions & 1 deletion allauth/socialaccount/providers/edx/tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ class EdxTests(OAuth2TestsMixin, TestCase):
provider_id = EdxProvider.id

def get_mocked_response(self):
print(self)
return MockedResponse(
200,
"""{
Expand Down

0 comments on commit aa72246

Please sign in to comment.