You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
import socket
import struct
from parsley import makeProtocol, stack
from twisted.internet import protocol, defer, interfaces
from twisted.python import failure
from zope.interface import implements
import txsocksx.constants as c, txsocksx.errors as e
from txsocksx import grammar
After:
import socket
import struct
import txsocksx.constants as c
from parsley import makeProtocol, stack
from twisted.internet import defer, interfaces, protocol
from twisted.python import failure
from txsocksx import grammar
from zope.interface import implements
import c as e
import e
The text was updated successfully, but these errors were encountered:
For example, in my own project. Before:
After:
The text was updated successfully, but these errors were encountered: