Skip to content

Commit

Permalink
Clean up imports
Browse files Browse the repository at this point in the history
  • Loading branch information
ribbanya committed Sep 7, 2024
1 parent bd70d03 commit 523a182
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 2 deletions.
12 changes: 10 additions & 2 deletions configure.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,17 @@
import argparse
import sys
from pathlib import Path
from typing import Any, Dict, Iterator, List
from typing import Iterator, List, Optional

from tools.project import *
from tools.project import (
Library,
Object,
ProgressCategory,
ProjectConfig,
calculate_progress,
generate_build,
is_windows,
)

# Game versions
DEFAULT_VERSION = 0
Expand Down
1 change: 1 addition & 0 deletions tools/download_tool.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@ def dtk_url(tag: str) -> str:
repo = "https://github.com/encounter/decomp-toolkit"
return f"{repo}/releases/download/{tag}/dtk-{system}-{arch}{suffix}"


def objdiff_cli_url(tag: str) -> str:
uname = platform.uname()
suffix = ""
Expand Down

0 comments on commit 523a182

Please sign in to comment.