summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYuval Adam <_@yuv.al>2022-11-25 16:56:55 +0200
committerYuval Adam <_@yuv.al>2022-11-25 16:56:55 +0200
commit8569e59b37ef86ded946571f60dcc5ddd297acec (patch)
treeaa18d9569fcdb370b7add30f68efda9d821121da
parent7a7e18a050a78544199afa90f6fb806a10a7d2d1 (diff)
Update scan script
-rw-r--r--scripts/scan.py11
1 files changed, 5 insertions, 6 deletions
diff --git a/scripts/scan.py b/scripts/scan.py
index c83d455..24fceb6 100644
--- a/scripts/scan.py
+++ b/scripts/scan.py
@@ -122,12 +122,11 @@ class NameScanner:
"github": github,
"linkedin": li,
}
- ge = "✅" if github else " "
- le = "✅" if li else " "
- ne = "✅" if nip else " "
- se = "❌" if sale else " "
- print(f"{name:20}{ne}{ge}{le}{se}")
- print(len(res))
+ ge = "✅" if github else " "
+ le = "✅" if li else " "
+ ne = "✅" if nip else " "
+ se = "❌" if sale else " "
+ print(f"{ne}{ge}{le}{se}{name:20}")
ns = NameScanner()