Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: linkedin script update #133

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 4 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -676,13 +676,13 @@ class Benefit:

@dataclass
class Project:
__slots__ = ('brief_description', 'location')

brief_description: str
location: str
location: Optional[str] = None

def __str__(self) -> str:
return f'{self.brief_description} from {self.location}'
if self.location:
return f'{self.brief_description} from {self.location}'
return self.brief_description


@dataclass
Expand Down Expand Up @@ -743,7 +743,6 @@ if __name__ == '__main__':
Project('cost-effective solution for backing up video from thousands of live camera streams'),
Project('cost optimization system in telco domain'),
Project('a large scale scrape/search system tracking >100 million objects with 200+ fields each'),
...,
]

reef_technologies = Company(
Expand Down