Skip to content

Commit

Permalink
@mbridak black linter changes
Browse files Browse the repository at this point in the history
  • Loading branch information
mbridak committed Dec 5, 2024
1 parent 5a8ec36 commit 360e32b
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions not1mm/lib/plugin_common.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,11 +73,9 @@ def gen_adif(self, cabrillo_name: str, contest_id=""):
"""
now = datetime.datetime.now()
date_time = now.strftime("%Y-%m-%d_%H-%M-%S")
station_callsign = self.station.get('Call', '').upper()
station_callsign = self.station.get("Call", "").upper()
filename = (
str(Path.home())
+ "/"
+ f"{station_callsign}_{cabrillo_name}_{date_time}.adi"
str(Path.home()) + "/" + f"{station_callsign}_{cabrillo_name}_{date_time}.adi"
)
log = self.database.fetch_all_contacts_asc()
try:
Expand Down

0 comments on commit 360e32b

Please sign in to comment.