mirror of
https://github.com/varun-r-mallya/Python-BPF.git
synced 2025-12-31 21:06:25 +00:00
seperate expr handling logic to a different file to prevent circular import, add format strings
This commit is contained in:
@ -34,9 +34,9 @@ def hello_again(ctx: c_void_p) -> c_int64:
|
||||
y = False
|
||||
if x > 0:
|
||||
if x < 2:
|
||||
print("we prevailed")
|
||||
print(f"we prevailed {x}")
|
||||
else:
|
||||
print("we did not prevail")
|
||||
print(f"we did not prevail {x}")
|
||||
ts = ktime()
|
||||
last().update(key, ts)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user