Merge branch 'develop' into add_sys_var

This commit is contained in:
Bastian Schroll 2018-09-21 12:45:24 +02:00 committed by GitHub
commit 4a554e2cf1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
8 changed files with 11 additions and 11 deletions

View file

@ -13,8 +13,7 @@
@date: 15.01.2018
@author: Bastian Schroll
@description: Class to implement a filter for double alarms
@todo test, refactor and document
@todo check_msg is not implemented yet
@todo test, refactor and document / check_msg is not implemented yet
"""
import logging
import time

View file

@ -135,7 +135,11 @@ class TCPServer(socketserver.ThreadingMixIn, socketserver.TCPServer):
@staticmethod
def getClientsConnected():
# todo insert comment
"""!A list of all connected clients
with their IP address and last seen timestamp
_clients[ThreadName] = {"address", "timestamp"}
@return List of onnected clients"""
# todo return full list or write a print/debug method?
return _clients

View file

@ -101,6 +101,5 @@ class Packet:
"""!Print a info message to the log on INFO level.
Contains the most useful info about this packet.
@todo not complete yet - must be edit to print nice formatted messages on console
@param bwPacket: BOSWatch packet instance"""
"""
logging.info("[%s]", self.get("mode"))

View file

@ -13,7 +13,6 @@
@date: 15.01.2018
@author: Bastian Schroll
@description: Little Helper to replace wildcards in stings
@todo not completed yet
"""
import logging
import time