Skip to content

Commit

Permalink
chore: run formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
zieka committed Sep 5, 2023
1 parent f4f8738 commit cc24328
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions moderne_visualizations_misc/call_graph_uml.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,8 @@
" from_method = make_method(from_name)\n",
" to_method = make_method(to_name)\n",
" plantuml_code.append(\n",
" f'\"{from_class}::{from_method}\" --> \"{to_class}::{to_method}\"')\n",
" f'\"{from_class}::{from_method}\" --> \"{to_class}::{to_method}\"'\n",
" )\n",
"\n",
" if is_valid_class(to_class) and is_valid_method(to_name):\n",
" add_method_to_class(to_class, to_name)\n",
Expand All @@ -117,7 +118,8 @@
" from_method = make_method(from_name)\n",
" to_method = make_method(to_name)\n",
" plantuml_code.append(\n",
" f'\"{to_class}::{to_method}\" <-- \"{from_class}::{from_method}\"')\n"
" f'\"{to_class}::{to_method}\" <-- \"{from_class}::{from_method}\"'\n",
" )"
]
},
{
Expand All @@ -141,7 +143,7 @@
"\n",
"plantuml_code_string = \"\\n\".join(plantuml_code)\n",
"\n",
"# print(plantuml_code_string)\n"
"# print(plantuml_code_string)"
]
},
{
Expand Down

0 comments on commit cc24328

Please sign in to comment.