Spaces:
Sleeping
Sleeping
Commit ·
80ffc07
1
Parent(s): 018d189
update
Browse files
main.py
CHANGED
|
@@ -16,7 +16,7 @@ Currently unhandled features:
|
|
| 16 |
"""
|
| 17 |
|
| 18 |
def trim(str, n):
|
| 19 |
-
return "\n".join(str.splitlines()[
|
| 20 |
|
| 21 |
def trim_objdump(str):
|
| 22 |
return trim(str, 5)
|
|
|
|
| 16 |
"""
|
| 17 |
|
| 18 |
def trim(str, n):
|
| 19 |
+
return "\n".join(str.splitlines()[n:])
|
| 20 |
|
| 21 |
def trim_objdump(str):
|
| 22 |
return trim(str, 5)
|