transport: Make all calls go through base class send_apdu_raw()

This allows us to add APDU tracing at one central location in the code

Change-Id: Id0593a2e6d846cc3151443f1022ae7ee030e6673
diff --git a/pySim/transport/__init__.py b/pySim/transport/__init__.py
index fb8f31d..923787b 100644
--- a/pySim/transport/__init__.py
+++ b/pySim/transport/__init__.py
@@ -68,7 +68,7 @@
 				data : string (in hex) of returned data (ex. "074F4EFFFF")
 				sw   : string (in hex) of status word (ex. "9000")
 		"""
-		pass
+		return self._send_apdu_raw(pdu)
 
 	def send_apdu(self, pdu):
 		"""Sends an APDU and auto fetch response data