From 5bb6a3d8a65a6da6c9fef99c7c0bbf9b1780d719 Mon Sep 17 00:00:00 2001 From: Sebastien Bourdeauducq Date: Wed, 18 Feb 2015 11:34:00 -0700 Subject: [PATCH] style --- artiq/test/lda.py | 1 + doc/manual/developing_a_ndsp.rst | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/artiq/test/lda.py b/artiq/test/lda.py index 6b35d7fae..f7c8e9cc1 100644 --- a/artiq/test/lda.py +++ b/artiq/test/lda.py @@ -1,5 +1,6 @@ import unittest import os + from artiq.devices.lda.driver import Lda, Ldasim from artiq.language.units import dB diff --git a/doc/manual/developing_a_ndsp.rst b/doc/manual/developing_a_ndsp.rst index 07c9c6273..a22e3aabd 100644 --- a/doc/manual/developing_a_ndsp.rst +++ b/doc/manual/developing_a_ndsp.rst @@ -78,7 +78,7 @@ The client Clients are small command-line utilities that expose certain functionalities of the drivers. The ``artiq_rpctool`` utility contains a generic client that can be used in most cases, and developing a custom client is not required. Try these commands :: - $ artiq_rpctool ::1 3249 list-methods + $ artiq_rpctool ::1 3249 list-methods $ artiq_rpctool ::1 3249 call message test In case you are developing a NDSP that is complex enough to need a custom client, we will see how to develop one. Create a ``hello_client.py`` file with the following contents: ::