mlb-led-scoreboard
mlb-led-scoreboard copied to clipboard
Seeing shortened team names with RHE off
"runs": {
"runs_hits_errors": {
"show": false,
"compress_digits": false,
"spacing": 3
},
I'm still seeing shortened team names with this disabled.
Do you have "full_team_names": false,
in config.json?
No, it's set to true.
and in coords file
"runs": {
"runs_hits_errors": {
"show": false,
"compress_digits": false,
"spacing": 3
},
This can be repro'd by always setting runs
to > 9 in data/scoreboard/team.py
while a game is ongoing
class Team:
def __init__(self, abbrev, runs, name, hits, errors):
self.abbrev = abbrev
self.runs = 10
self.name = name
self.hits = hits
self.errors = errors
I didn't have "short_team_names_for_runs_hits": true,
I my config file...
No longer reproducing after adding it. /facepalm
I think we can close this in favor of #422 then