From b74b6f2727d87d4001d4a58d66ba3e58a93efdad Mon Sep 17 00:00:00 2001 From: George Hotz Date: Wed, 6 Dec 2017 16:17:57 -0800 Subject: [PATCH] rename panda to python because of git ambiguity --- README.md | 2 +- __init__.py | 2 +- {panda => python}/__init__.py | 0 {panda => python}/dfu.py | 0 {panda => python}/esptool.py | 0 {panda => python}/flash_release.py | 0 {panda => python}/update.py | 0 7 files changed, 2 insertions(+), 2 deletions(-) rename {panda => python}/__init__.py (100%) rename {panda => python}/dfu.py (100%) rename {panda => python}/esptool.py (100%) rename {panda => python}/flash_release.py (100%) rename {panda => python}/update.py (100%) diff --git a/README.md b/README.md index 0264912..79969b3 100644 --- a/README.md +++ b/README.md @@ -53,7 +53,7 @@ Directory structure - board -- Code that runs on the STM32 - boardesp -- Code that runs on the ESP8266 - drivers -- Drivers (not needed for use with python) -- panda    -- Python userspace library for interfacing with the panda +- python   -- Python userspace library for interfacing with the panda - tests -- Tests and helper programs for panda Programming (over USB) diff --git a/__init__.py b/__init__.py index f2dadf3..912b442 100644 --- a/__init__.py +++ b/__init__.py @@ -1 +1 @@ -from .panda import Panda, PandaWifiStreaming, PandaDFU, ESPROM, CesantaFlasher, flash_release, BASEDIR, ensure_st_up_to_date, build_st +from .python import Panda, PandaWifiStreaming, PandaDFU, ESPROM, CesantaFlasher, flash_release, BASEDIR, ensure_st_up_to_date, build_st diff --git a/panda/__init__.py b/python/__init__.py similarity index 100% rename from panda/__init__.py rename to python/__init__.py diff --git a/panda/dfu.py b/python/dfu.py similarity index 100% rename from panda/dfu.py rename to python/dfu.py diff --git a/panda/esptool.py b/python/esptool.py similarity index 100% rename from panda/esptool.py rename to python/esptool.py diff --git a/panda/flash_release.py b/python/flash_release.py similarity index 100% rename from panda/flash_release.py rename to python/flash_release.py diff --git a/panda/update.py b/python/update.py similarity index 100% rename from panda/update.py rename to python/update.py