Skip to content

Commit

Permalink
Removing redundancy in the display of county info.
Browse files Browse the repository at this point in the history
  • Loading branch information
kalendar committed Aug 4, 2024
1 parent 87ff373 commit 1db6088
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/database/table_declarations/qso_report.py
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ def table_values(self) -> tuple[dict[str, str], dict[str, str]]:
)
if self.my_cnty:
user_details.update(
"County": self.my_cnty_human
{"County": f"{self.my_cnty_human}"}
)

other_details: dict[str, str] = {
Expand All @@ -141,7 +141,7 @@ def table_values(self) -> tuple[dict[str, str], dict[str, str]]:

if self.dxcc == 291:
other_details.update(
"County": self.cnty_human
{"County": f"{self.cnty_human}"}
)

other_details.update(
Expand Down

0 comments on commit 1db6088

Please sign in to comment.