diff --git a/pyfrc/mains/cli_deploy.py b/pyfrc/mains/cli_deploy.py index 1b8246e..b914bdc 100644 --- a/pyfrc/mains/cli_deploy.py +++ b/pyfrc/mains/cli_deploy.py @@ -7,8 +7,6 @@ import json import os import sys -import re - import shutil import tempfile import threading @@ -512,7 +510,7 @@ def _start_nc(self, ssh, options): def _copy_to_tmpdir(self, tmp_dir, robot_path, dry_run=False): upload_files = [] - ignore_exts = frozenset({"pyc", "whl", "ipk", "zip", "gz", "wpilog"}) + ignore_exts = frozenset({".pyc", ".whl", ".ipk", ".zip", ".gz", ".wpilog"}) for root, dirs, files in os.walk(robot_path): prefix = root[len(robot_path) + 1 :]