MCPcopy Index your code
hub / github.com/Eve-PySpy/PySpy / appendString

Method appendString

gui.py:477–488  ·  view source on GitHub ↗

Appends a String to another string with a "+" if the org string is not "". :param org: Original String :param app: String which is to be appended to the org string :return:

(self, org, app)

Source from the content-addressed store, hash-verified

475 event.Skip(True)
476
477 def appendString(self, org, app):
478 """
479 Appends a String to another string with a "+" if the org string is not "".
480
481 :param org: Original String
482 :param app: String which is to be appended to the org string
483 :return:
484 """
485 if org == "-":
486 return app
487 else:
488 return org + " + " + app
489
490 def updateList(self, outlist, duration=None):
491 '''

Callers 1

updateListMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected