forked from platformio/platformio-core
Black formatter
This commit is contained in:
@ -53,7 +53,8 @@ def validate_datetime(ctx, param, value): # pylint: disable=unused-argument
|
|||||||
"Default is set to a username of the authorized PIO Account",
|
"Default is set to a username of the authorized PIO Account",
|
||||||
)
|
)
|
||||||
@click.option(
|
@click.option(
|
||||||
"--type", "type_",
|
"--type",
|
||||||
|
"type_",
|
||||||
type=click.Choice(list(PackageType.items().values())),
|
type=click.Choice(list(PackageType.items().values())),
|
||||||
help="Custom package type",
|
help="Custom package type",
|
||||||
)
|
)
|
||||||
@ -78,9 +79,11 @@ def package_publish_cmd( # pylint: disable=too-many-arguments, too-many-locals
|
|||||||
):
|
):
|
||||||
click.secho("Preparing a package...", fg="cyan")
|
click.secho("Preparing a package...", fg="cyan")
|
||||||
owner = owner or AccountClient().get_logged_username()
|
owner = owner or AccountClient().get_logged_username()
|
||||||
do_not_pack = not os.path.isdir(package) and isinstance(
|
do_not_pack = (
|
||||||
FileUnpacker.new_archiver(package), TARArchiver
|
not os.path.isdir(package)
|
||||||
) and PackageType.from_archive(package)
|
and isinstance(FileUnpacker.new_archiver(package), TARArchiver)
|
||||||
|
and PackageType.from_archive(package)
|
||||||
|
)
|
||||||
archive_path = None
|
archive_path = None
|
||||||
with tempfile.TemporaryDirectory() as tmp_dir: # pylint: disable=no-member
|
with tempfile.TemporaryDirectory() as tmp_dir: # pylint: disable=no-member
|
||||||
# publish .tar.gz instantly without repacking
|
# publish .tar.gz instantly without repacking
|
||||||
|
Reference in New Issue
Block a user