Skip to content

Commit

Permalink
callbacks.CommandProcess: Fix Python 3.14 support
Browse files Browse the repository at this point in the history
  • Loading branch information
progval committed Oct 18, 2024
1 parent 2e4a733 commit 5b8aa5c
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions src/callbacks.py
Original file line number Diff line number Diff line change
Expand Up @@ -1355,12 +1355,8 @@ def __init__(self, target=None, args=(), kwargs={}):
pn,
cn)
log.debug('Spawning process %s (args: %r)', procName, args)
self.__parent = super(CommandProcess, self)
self.__parent.__init__(target=target, name=procName,
args=args, kwargs=kwargs)

def run(self):
self.__parent.run()
super().__init__(target=target, name=procName,
args=args, kwargs=kwargs)

class CanonicalString(registry.NormalizedString):
def normalize(self, s):
Expand Down

0 comments on commit 5b8aa5c

Please sign in to comment.