From fc240a0edfd9619cf687433bae97c632ad4dc55b Mon Sep 17 00:00:00 2001 From: Zsolt Ero Date: Thu, 29 Aug 2024 01:52:56 +0200 Subject: [PATCH] renames --- scripts/http_host/host_manager.py | 6 +++--- .../http_host_lib/{download_assets.py => assets.py} | 0 .../http_host_lib/{download_tileset.py => btrfs.py} | 0 3 files changed, 3 insertions(+), 3 deletions(-) rename scripts/http_host/http_host_lib/{download_assets.py => assets.py} (100%) rename scripts/http_host/http_host_lib/{download_tileset.py => btrfs.py} (100%) diff --git a/scripts/http_host/host_manager.py b/scripts/http_host/host_manager.py index a81cbc8..64315ae 100755 --- a/scripts/http_host/host_manager.py +++ b/scripts/http_host/host_manager.py @@ -7,12 +7,12 @@ from pathlib import Path import click import requests -from http_host_lib.config import config -from http_host_lib.download_assets import ( +from http_host_lib.assets import ( download_and_extract_asset_tar_gz, download_sprites, ) -from http_host_lib.download_tileset import download_and_extract_tileset +from http_host_lib.btrfs import download_and_extract_tileset +from http_host_lib.config import config from http_host_lib.mount import clean_up_mounts, create_fstab from http_host_lib.nginx import write_nginx_config from http_host_lib.set_tileset_versions import set_tileset_versions diff --git a/scripts/http_host/http_host_lib/download_assets.py b/scripts/http_host/http_host_lib/assets.py similarity index 100% rename from scripts/http_host/http_host_lib/download_assets.py rename to scripts/http_host/http_host_lib/assets.py diff --git a/scripts/http_host/http_host_lib/download_tileset.py b/scripts/http_host/http_host_lib/btrfs.py similarity index 100% rename from scripts/http_host/http_host_lib/download_tileset.py rename to scripts/http_host/http_host_lib/btrfs.py