diff --git a/emxarms/python/__init__.py b/emxarms/python/__init__.py deleted file mode 100644 index e69de29..0000000 diff --git a/emxarms/python/__pycache__/__init__.cpython-312.pyc b/emxarms/python/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index 7ff4ead..0000000 Binary files a/emxarms/python/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/emxarms/python/__pycache__/temp.cpython-312.pyc b/emxarms/python/__pycache__/temp.cpython-312.pyc deleted file mode 100644 index eb30906..0000000 Binary files a/emxarms/python/__pycache__/temp.cpython-312.pyc and /dev/null differ diff --git a/emxarms/python/temp.py b/emxarms/python/temp.py deleted file mode 100644 index d744166..0000000 --- a/emxarms/python/temp.py +++ /dev/null @@ -1,15 +0,0 @@ -import os - -def rename_files(root_dir, old_str, new_str): - for dirpath, dirnames, filenames in os.walk(root_dir): - for filename in filenames: - if old_str in filename: - old_file = os.path.join(dirpath, filename) - new_file = os.path.join(dirpath, filename.replace(old_str, new_str)) - os.rename(old_file, new_file) - print(f'Renamed: {old_file} to {new_file}') - - - - -