Skip to content

Commit

Permalink
remove -> None
Browse files Browse the repository at this point in the history
  • Loading branch information
glomatico committed Apr 17, 2024
1 parent 5feb5b2 commit 9094f2c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion gamdl/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ def get_param_string(param: click.Parameter) -> str:
return param.default


def write_default_config_file(ctx: click.Context) -> None:
def write_default_config_file(ctx: click.Context):
ctx.params["config_path"].parent.mkdir(parents=True, exist_ok=True)
config_file = {
param.name: get_param_string(param)
Expand Down
2 changes: 1 addition & 1 deletion gamdl/downloader_music_video.py
Original file line number Diff line number Diff line change
Expand Up @@ -237,7 +237,7 @@ def remux_mp4box(
decrypted_path_audio: Path,
decrypted_path_video: Path,
fixed_path: Path,
) -> None:
):
subprocess.run(
[
self.downloader.mp4box_path_full,
Expand Down
2 changes: 1 addition & 1 deletion gamdl/downloader_song_legacy.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ def decrypt(
**self.downloader.subprocess_additional_args,
)

def remux_mp4box(self, decrypted_path: Path, remuxed_path: Path) -> None:
def remux_mp4box(self, decrypted_path: Path, remuxed_path: Path):
subprocess.run(
[
self.downloader.mp4box_path_full,
Expand Down

0 comments on commit 9094f2c

Please sign in to comment.