Skip to content
This repository has been archived by the owner on Oct 14, 2022. It is now read-only.

Commit

Permalink
move to sipyco
Browse files Browse the repository at this point in the history
  • Loading branch information
opticlock committed Dec 19, 2019
1 parent ac5e441 commit 334888b
Show file tree
Hide file tree
Showing 4 changed files with 24 additions and 28 deletions.
13 changes: 6 additions & 7 deletions ptb/aqctl_ptb_shutter.py
Expand Up @@ -7,13 +7,12 @@

from .shutter_tcp import ShutterTCP as Shutter

from artiq.protocols.pc_rpc import Server
from artiq.tools import (simple_network_args, init_logger,
bind_address_from_args)
try:
from artiq.tools import verbosity_args
except ImportError:
from artiq.tools import add_common_args as verbosity_args
from sipyco.pc_rpc import Server
from sipyco import common_args

from sipyco.common_args import (
simple_network_args, init_logger_from_args as init_logger,
bind_address_from_args, verbosity_args)


logger = logging.getLogger(__name__)
Expand Down
13 changes: 6 additions & 7 deletions ptb/aqctl_ptb_synth.py
Expand Up @@ -7,13 +7,12 @@

from .synth_tcp import SynthTCP as Synth

from artiq.protocols.pc_rpc import Server
from artiq.tools import (simple_network_args, init_logger,
bind_address_from_args)
try:
from artiq.tools import verbosity_args
except ImportError:
from artiq.tools import add_common_args as verbosity_args
from sipyco.pc_rpc import Server
from sipyco import common_args

from sipyco.common_args import (
simple_network_args, init_logger_from_args as init_logger,
bind_address_from_args, verbosity_args)


logger = logging.getLogger(__name__)
Expand Down
13 changes: 6 additions & 7 deletions ptb/aqctl_ptb_temp.py
Expand Up @@ -7,13 +7,12 @@

from .temp_tcp import TempTCP as Temp

from artiq.protocols.pc_rpc import Server
from artiq.tools import (simple_network_args, init_logger,
bind_address_from_args)
try:
from artiq.tools import verbosity_args
except ImportError:
from artiq.tools import add_common_args as verbosity_args
from sipyco.pc_rpc import Server
from sipyco import common_args

from sipyco.common_args import (
simple_network_args, init_logger_from_args as init_logger,
bind_address_from_args, verbosity_args)


logger = logging.getLogger(__name__)
Expand Down
13 changes: 6 additions & 7 deletions ptb/aqctl_ptb_voltage.py
Expand Up @@ -7,13 +7,12 @@

from .voltage_tcp import VoltageTCP as Voltage

from artiq.protocols.pc_rpc import Server
from artiq.tools import (simple_network_args, init_logger,
bind_address_from_args)
try:
from artiq.tools import verbosity_args
except ImportError:
from artiq.tools import add_common_args as verbosity_args
from sipyco.pc_rpc import Server
from sipyco import common_args

from sipyco.common_args import (
simple_network_args, init_logger_from_args as init_logger,
bind_address_from_args, verbosity_args)


logger = logging.getLogger(__name__)
Expand Down

0 comments on commit 334888b

Please sign in to comment.