Skip to content

Commit

Permalink
Run black
Browse files Browse the repository at this point in the history
  • Loading branch information
montyly committed Dec 6, 2024
1 parent 10774d1 commit ce496c7
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions slither/printers/call/call_graph.py
Original file line number Diff line number Diff line change
Expand Up @@ -257,7 +257,7 @@ def output(self, filename: str) -> Output:
}
content = "\n".join(
["strict digraph {"]
+ ["rankdir=\"LR\""]
+ ['rankdir="LR"']
+ ["node [shape=box]"]
+ [_process_functions(list(all_functions_as_dict.values()))]
+ ["}"]
Expand All @@ -270,10 +270,10 @@ def output(self, filename: str) -> Output:
with open(derived_output_filename, "w", encoding="utf8") as f:
info += f"Call Graph: {derived_output_filename}\n"
content = "\n".join(
["strict digraph {"]
+ ["rankdir=\"LR\""]
["strict digraph {"]
+ ['rankdir="LR"']
+ ["node [shape=box]"]
+ [_process_functions(derived_contract.functions)]
+ [_process_functions(derived_contract.functions)]
+ ["}"]
)
f.write(content)
Expand Down

0 comments on commit ce496c7

Please sign in to comment.