Commit 7db6e7ed authored by Milosz Malczak's avatar Milosz Malczak

server: removed unnecessary comments

parent cd41412f
......@@ -11,7 +11,6 @@ from general.zmq_rpc import ZMQ_RPC
from general.zmq_rpc import RPC_Error
# fixme if your class doesnt inherit, do not add empty () after its declaration
class ADC:
def __init__(self, unique_ADC_name, ip, port, connection_manager):
......@@ -25,7 +24,7 @@ class ADC:
self.__acq_conf = None
self.__is_WRTD_master = None
self.__connection_manager = connection_manager
self.__zmq_rpc = ZMQ_RPC(ip, port) # remove +8 after removing xml
self.__zmq_rpc = ZMQ_RPC(ip, port)
conf = self.send_RPC('get_current_adc_conf')
self.number_of_channels = conf['board_conf']['n_chan']
self.__GUI = None
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment