Skip to content

Commit

Permalink
Fix pre-commit
Browse files Browse the repository at this point in the history
  • Loading branch information
ale-rt committed Jan 24, 2024
1 parent 75b1c42 commit 66b9cef
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions src/euphorie/client/browser/company.py
Original file line number Diff line number Diff line change
Expand Up @@ -197,15 +197,13 @@ def session(self):

@property
def default_company_values(self):
"""The values we use to create a new company.
"""
"""The values we use to create a new company."""
return {"session": self.session}

@property
@memoize
def company(self):
""" Get or create the company object for this session.
"""
"""Get or create the company object for this session."""
company = (
model.Session.query(self.company_class)
.filter(self.company_class.session == self.session)
Expand All @@ -226,7 +224,6 @@ def company(self):
def _assertCompany(self):
return


def countries(self):
names = [
{"id": key.lower(), "title": value}
Expand Down

0 comments on commit 66b9cef

Please sign in to comment.