Erster Commit des bestehenden monolithischen WinForms-Copytraders, inklusive der Alt-Backups (*.bak), damit diese dauerhaft in der Historie rekonstruierbar bleiben. Threema-Lib unter libs/ wurde vendored (nested .git entfernt). Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
9 lines
399 B
Python
9 lines
399 B
Python
import sys
|
|
with open("j:/Softwareprojekte/PolytraderSharp/PolyTraderSharp/services/PolymarketApiService.cs", "r", encoding="utf-8") as f:
|
|
lines = f.readlines()
|
|
with open("j:/Softwareprojekte/PolytraderSharp/PolyTraderSharp/services/PolymarketApiService.cs", "w", encoding="utf-8") as f:
|
|
for i, line in enumerate(lines):
|
|
if 649 <= i <= 843:
|
|
continue
|
|
f.write(line)
|