Skip to content

Commit

Permalink
fix: formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
tomquirk committed Sep 2, 2024
1 parent b00883c commit 9fb0187
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions linkedin_api/linkedin.py
Original file line number Diff line number Diff line change
Expand Up @@ -848,9 +848,7 @@ def get_profile(

return profile

def get_profile_connections(
self, urn_id: str, **kwargs
) -> List:
def get_profile_connections(self, urn_id: str, **kwargs) -> List:
"""Fetch connections for a given LinkedIn profile.
See Linkedin.search_people() for additional searching parameters.
Expand Down Expand Up @@ -1585,7 +1583,7 @@ def get_post_reactions(self, urn_id, max_results=None, results=None):
results.extend(data["elements"])
self.logger.debug(f"results grew: {len(results)}")

return self.get_social_reactions(
return self.get_post_reactions(
urn_id=urn_id,
results=results,
max_results=max_results,
Expand Down

0 comments on commit 9fb0187

Please sign in to comment.