Skip to content

Commit dc8c6b6

Browse files
committed
fix: changed contributors row
1 parent 6b2d756 commit dc8c6b6

2 files changed

Lines changed: 2 additions & 7 deletions

File tree

config.py

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -61,12 +61,7 @@
6161
"name": "Clovis",
6262
"icon": "https://avatars.githubusercontent.com/u/150185321?s=64&v=4",
6363
"url": "https://github.com/Elnix90",
64-
},
65-
{
66-
"name": "Nathanael",
67-
"icon": "https://avatars.githubusercontent.com/u/247614572?s=64&v=4",
68-
"url": "https://github.com/NathanaelRBDev",
69-
},
64+
}
7065
]
7166

7267
# Dimensions

ui/sidebar.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -239,7 +239,7 @@ def __init__(self, master, icons, i18n=None, **kwargs):
239239

240240
# Charger les icônes des contributeurs
241241
self.contributor_buttons = []
242-
for i, contrib in enumerate(config.CONTRIBUTORS[:4]): # Limiter à 4
242+
for i, contrib in enumerate(config.CONTRIBUTORS[:3]): # Limiter à 3
243243
try:
244244
# Télécharger l'icône
245245
resp = requests.get(contrib["icon"], timeout=10)

0 commit comments

Comments
 (0)