Skip to content

Commit

Permalink
fix: remove debug print statements from main function in sub_adjust.py
Browse files Browse the repository at this point in the history
  • Loading branch information
thelastfantasy committed Oct 19, 2024
1 parent 5e8fdd7 commit ca6e36e
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions sub_adjust.py
Original file line number Diff line number Diff line change
Expand Up @@ -324,7 +324,6 @@ def check_queue():
def main():
# 使用 options_first=True 确保没有参数时不会直接触发 Usage 输出
args = docopt(USAGE, version=__version__, options_first=True)
print(args)

input_files = args["INPUTS"]

Expand All @@ -340,7 +339,6 @@ def main():
logger.info("进入命令行模式...")
shift_value = float(args["--offset"]) * 1000
layer_numbers = parse_layers(args["--layers"])
print(layer_numbers)
if input_files:
for filepath in input_files:
if filepath.endswith(".ass") or filepath.endswith(".ssa"):
Expand Down

0 comments on commit ca6e36e

Please sign in to comment.