Skip to content

Commit

Permalink
Fix minor regression.
Browse files Browse the repository at this point in the history
  • Loading branch information
palkeo committed Apr 24, 2020
1 parent 30ee281 commit 8516669
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions panoramix.py
Original file line number Diff line number Diff line change
Expand Up @@ -369,10 +369,10 @@ def dec():
key=lambda f: f.priority()
) # sort func list by length, with some caveats

if shown_already and any(1 for f in func_list if f.hash not in shown_already):
# otherwise no irregular functions, so this is not needed :)
print(C.gray + "#\n# Regular functions\n#" + C.end + "\n")

if any(1 for f in func_list if f.hash not in shown_already):
if shown_already:
# otherwise no irregular functions, so this is not needed :)
print(C.gray + "#\n# Regular functions\n#" + C.end + "\n")
else:
print(
"\n"
Expand Down

2 comments on commit 8516669

@Mreparepas
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hello good people

@Dalmirolig
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

hola buenas, necesito saber como puedo enviar una verificacion de contrato, cambiando la direccion donde se ingresa el dinero

Please sign in to comment.