Correct channel name
This commit is contained in:
parent
1f416411c7
commit
57ea490405
1 changed files with 2 additions and 2 deletions
|
@ -26,7 +26,7 @@ def main():
|
||||||
|
|
||||||
table = Table(
|
table = Table(
|
||||||
Column('', alignment='right'),
|
Column('', alignment='right'),
|
||||||
Column('~NumberDealers'),
|
Column('~numberdealers'),
|
||||||
Column('~numberdealers-ng')
|
Column('~numberdealers-ng')
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -69,7 +69,7 @@ def main():
|
||||||
stats_history = sorted(_stats_history.items(), key=lambda x: x[1], reverse=True)
|
stats_history = sorted(_stats_history.items(), key=lambda x: x[1], reverse=True)
|
||||||
_stats_ng = numbers_per_user.analyze_users(numbers_ng)
|
_stats_ng = numbers_per_user.analyze_users(numbers_ng)
|
||||||
stats_ng = sorted(_stats_ng.items(), key=lambda x: x[1], reverse=True)
|
stats_ng = sorted(_stats_ng.items(), key=lambda x: x[1], reverse=True)
|
||||||
print(f"{'~NumberDealers':31s} ~numberdealers-ng")
|
print(f"{'~numberdealers':31s} ~numberdealers-ng")
|
||||||
i = 0
|
i = 0
|
||||||
others_count_hist = 0
|
others_count_hist = 0
|
||||||
others_names_hist = 0
|
others_names_hist = 0
|
||||||
|
|
Loading…
Reference in a new issue