mirror of
https://github.com/python-poetry/install.python-poetry.org.git
synced 2024-11-06 06:05:52 -05:00
chore: clean up minor code smells
This resolves some code smells found during python-poetry/poetry#4773. I have not yet added the new lints to this repo, but I once they're relatively stable/agreed on the main repo I will PR them here.
This commit is contained in:
parent
ea79142501
commit
2f92f18b7b
1 changed files with 4 additions and 4 deletions
|
@ -213,7 +213,7 @@ def _get_win_folder_with_ctypes(csidl_name):
|
|||
|
||||
if WINDOWS:
|
||||
try:
|
||||
from ctypes import windll # noqa
|
||||
from ctypes import windll # noqa: F401
|
||||
|
||||
_get_win_folder = _get_win_folder_with_ctypes
|
||||
except ImportError:
|
||||
|
@ -580,7 +580,7 @@ class Installer:
|
|||
try:
|
||||
self._install_comment(version, "Creating environment")
|
||||
yield VirtualEnvironment.make(env_path)
|
||||
except Exception as e: # noqa
|
||||
except Exception as e:
|
||||
if env_path.exists():
|
||||
self._install_comment(
|
||||
version, "An error occurred. Removing partial environment."
|
||||
|
@ -871,7 +871,7 @@ def main():
|
|||
try:
|
||||
return installer.run()
|
||||
except PoetryInstallationError as e:
|
||||
installer._write(colorize("error", "Poetry installation failed.")) # noqa
|
||||
installer._write(colorize("error", "Poetry installation failed."))
|
||||
|
||||
if e.log is not None:
|
||||
import traceback
|
||||
|
@ -882,7 +882,7 @@ def main():
|
|||
dir=str(Path.cwd()),
|
||||
text=True,
|
||||
)
|
||||
installer._write(colorize("error", f"See {path} for error logs.")) # noqa
|
||||
installer._write(colorize("error", f"See {path} for error logs."))
|
||||
text = f"{e.log}\nTraceback:\n\n{''.join(traceback.format_tb(e.__traceback__))}"
|
||||
Path(path).write_text(text)
|
||||
|
||||
|
|
Loading…
Reference in a new issue