14 lines
282 B
Python
14 lines
282 B
Python
|
|
# SPDX-FileCopyrightText: 2024 Blender Authors
|
||
|
|
#
|
||
|
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
||
|
|
|
||
|
|
|
||
|
|
last_line_length = 0
|
||
|
|
|
||
|
|
|
||
|
|
def print_updateable_line(data):
|
||
|
|
global last_line_length
|
||
|
|
print(" " * last_line_length, end="\r")
|
||
|
|
print(data, end="\r")
|
||
|
|
last_line_length = len(data)
|