change singleton to global
This commit is contained in:
@@ -2,10 +2,9 @@ import requests_unixsocket as req
|
||||
import socket
|
||||
import json
|
||||
import asyncio
|
||||
from utils.Singleton import Singleton
|
||||
|
||||
|
||||
class Networking(metaclass=Singleton):
|
||||
class Networking:
|
||||
def __init__(self, output_server_address, input_socket_address):
|
||||
self.server_address = ""
|
||||
self.input_socket = socket.socket(socket.AF_UNIX, socket.SOCK_STREAM)
|
||||
|
||||
Reference in New Issue
Block a user