Skip to content

Commit

Permalink
style: format code with Black
Browse files Browse the repository at this point in the history
This commit fixes the style issues introduced in 1617e19 according to the output
from Black.

Details: None
  • Loading branch information
deepsource-autofix[bot] authored Dec 10, 2023
1 parent 1617e19 commit 3c5187f
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions lastversion/ProjectHolder.py
Original file line number Diff line number Diff line change
Expand Up @@ -375,10 +375,7 @@ def _type(self):
def release_download_url(self, release, shorter=False):
"""Get release download URL."""
if not self.RELEASE_URL_FORMAT:
log.warning(
"Getting release URL for %s is not implemented",
self._type()
)
log.warning("Getting release URL for %s is not implemented", self._type())
return None
ext = "zip" if os.name == "nt" else "tar.gz"

Expand Down

0 comments on commit 3c5187f

Please sign in to comment.