-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
7679cf7
commit 63db070
Showing
1 changed file
with
8 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,17 +6,17 @@ | |
# Credits: | ||
# - Matteo Bunino <[email protected]> - CERN | ||
# - Jarl Sondre Sæther <[email protected]> - CERN | ||
# | ||
# | ||
# -------------------------------------------------------------------------------------- | ||
# Command-line interface for the itwinai Python library. | ||
# Example: | ||
# | ||
# Command-line interface for the itwinai Python library. | ||
# Example: | ||
# | ||
# >>> itwinai --help | ||
# | ||
# | ||
# -------------------------------------------------------------------------------------- | ||
# | ||
# NOTE: import libraries in the command's function, not here, as having them here will | ||
# slow down the CLI commands significantly. | ||
# | ||
# NOTE: import libraries in the command's function, not here, as having them here will | ||
# slow down the CLI commands significantly. | ||
|
||
from pathlib import Path | ||
from typing import List, Optional | ||
|
@@ -226,7 +226,6 @@ def generate_scalability_plot( | |
Optional[str], | ||
typer.Option(help=("Archive name to backup the data, without extension.")), | ||
] = None, | ||
|
||
): | ||
""" | ||
Generate scalability report merging all CSVs containing epoch time | ||
|