From 473ea195703fe7c2af5725e635fbfb79688906ce Mon Sep 17 00:00:00 2001 From: matejcik Date: Fri, 2 Mar 2018 15:35:56 +0100 Subject: [PATCH] trezorlib/transport: rename files as separate step (to make diffs nicer) --- trezorlib/{transport.py => transport/__init__.py} | 0 trezorlib/{transport_bridge.py => transport/bridge.py} | 0 trezorlib/{transport_hid.py => transport/hid.py} | 0 trezorlib/{transport_udp.py => transport/udp.py} | 0 trezorlib/{transport_webusb.py => transport/webusb.py} | 0 5 files changed, 0 insertions(+), 0 deletions(-) rename trezorlib/{transport.py => transport/__init__.py} (100%) rename trezorlib/{transport_bridge.py => transport/bridge.py} (100%) rename trezorlib/{transport_hid.py => transport/hid.py} (100%) rename trezorlib/{transport_udp.py => transport/udp.py} (100%) rename trezorlib/{transport_webusb.py => transport/webusb.py} (100%) diff --git a/trezorlib/transport.py b/trezorlib/transport/__init__.py similarity index 100% rename from trezorlib/transport.py rename to trezorlib/transport/__init__.py diff --git a/trezorlib/transport_bridge.py b/trezorlib/transport/bridge.py similarity index 100% rename from trezorlib/transport_bridge.py rename to trezorlib/transport/bridge.py diff --git a/trezorlib/transport_hid.py b/trezorlib/transport/hid.py similarity index 100% rename from trezorlib/transport_hid.py rename to trezorlib/transport/hid.py diff --git a/trezorlib/transport_udp.py b/trezorlib/transport/udp.py similarity index 100% rename from trezorlib/transport_udp.py rename to trezorlib/transport/udp.py diff --git a/trezorlib/transport_webusb.py b/trezorlib/transport/webusb.py similarity index 100% rename from trezorlib/transport_webusb.py rename to trezorlib/transport/webusb.py