]> git.parisson.com Git - timeside.git/commitdiff
doc: fix imports
authorGuillaume Pellerin <yomguy@parisson.com>
Fri, 24 May 2013 12:59:43 +0000 (14:59 +0200)
committerGuillaume Pellerin <yomguy@parisson.com>
Fri, 24 May 2013 12:59:43 +0000 (14:59 +0200)
doc/timeside_slides.html

index 9b897d4441322cef300f816a128350ca2ccafab5..7df84700f88084f8ce34e60c06e9b2c6bc451e00 100644 (file)
                                        <h2>Quick processing example</h2>
                                        <p>Define some processors:</p>
                                        <pre><code data-trim class="python">
-from timeside.decoder import *
-from timeside.grapher import *
-from timeside.analyzer import *
-from timeside.encoder import *
+import timeside.decoder
+import timeside.grapher
+import timeside.analyzer
+import timeside.encoder
 
 decoder = timeside.decoder.FileDecoder('sweep.wav')
 grapher = timeside.grapher.Waveform()
@@ -488,8 +488,8 @@ from new_analyzer import * # << here
                                        <h2>Howto implement an analyzer plugin?</h2>
                                        <p>then test it!
                                        <pre><code data-trim class="python">
-from timeside.decoder import *
-from timeside.analyzer import *
+import timeside.decoder
+import timeside.analyzer
 
 decoder = timeside.decoder.FileDecoder('sweep.wav')
 analyzer = timeside.analyzer.NewAnalyzer()