diff options
| author | seth <[email protected]> | 2022-07-02 03:01:24 -0400 |
|---|---|---|
| committer | seth <[email protected]> | 2022-07-02 03:01:24 -0400 |
| commit | a6be3128690e5d012382de8eeb2e5e6634a0bde8 (patch) | |
| tree | c18cd4b09a9c143e5f8e2d69b542af76f7d30036 /countdistros_pichart.py | |
| parent | b491e255945f055c26bfefc9d0526f1a36e7a554 (diff) | |
Diffstat (limited to 'countdistros_pichart.py')
| -rwxr-xr-x | countdistros_pichart.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/countdistros_pichart.py b/countdistros_pichart.py index ed66d71..09d19bb 100755 --- a/countdistros_pichart.py +++ b/countdistros_pichart.py @@ -3,9 +3,10 @@ import countdistros as countd import matplotlib.pyplot as plt + def run(): data = countd.get_data() - + labels = [] values = [] for x, y in data.items(): @@ -16,5 +17,6 @@ def run(): plt.axis('equal') plt.show() + if __name__ == '__main__': run() |
