Skip to content

Commit

Permalink
isort
Browse files Browse the repository at this point in the history
  • Loading branch information
hmaarrfk committed Apr 5, 2024
1 parent 09b2cab commit e31184c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 2 additions & 0 deletions teensytoany/programmer.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
import click

import teensytoany


@click.command(epilog=f"Version {teensytoany.__version__}")
@click.option(
'--serial-number',
Expand Down
3 changes: 2 additions & 1 deletion teensytoany/teensytoany.py
Original file line number Diff line number Diff line change
Expand Up @@ -247,8 +247,9 @@ def _generate_firmware_filename(*, mcu, version):

@staticmethod
def _generate_firmware_directory(*, mcu):
from pathlib import Path # pylint: disable=import-outside-toplevel

from appdirs import AppDirs # pylint: disable=import-outside-toplevel
from pathlib import Path # pylint: disable=import-outside-toplevel
app = AppDirs('teensytoany', 'ramonaoptics')
cache_dir = Path(app.user_cache_dir)
cache_dir.mkdir(parents=True, exist_ok=True)
Expand Down

0 comments on commit e31184c

Please sign in to comment.