Swen Gross

Results 50 comments of Swen Gross

with weather i'm on a pr branch. (`refactor/translatable`) But there wouldn't be a owm call with weather v.0.0.1a8 / a7 either

Had some similar expirience while setting up my local whisper docker, but didn't dig deeper. There was no request to whisper but i got a transcription (from somewhere), so i...

That said, this has revealed another problem ``` Traceback (most recent call last): File "/home/sweng/mycroft-core/mycroft/skills/mycroft_skill/event_container.py", line 73, in wrapper handler(message) File "/opt/mycroft/skills/skill-weather.emphasize/__init__.py", line 565, in handle_sunset dialog.build_sunset_dialog() File "/opt/mycroft/skills/skill-weather.emphasize/skill/dialog.py", line...

This is indeed a Typo, but in `__init___.py` Several intents (condition/storm/rain/...) have `.optionally("Location")` in their constructor while others go with `.optionally("location")`. if you issue a condition request with a location...

@forslund Then `self.location = message.data.get("location")` has to be changed too. [#](https://github.com/MycroftAI/skill-weather/blob/b7a4984b457bb9a800de4ec1aa2d5265d540a9b7/skill/intent.py#L39). Was about to change that (and this one worked on my test rig), as i saw that the constructor...

I wondered about the `location.voc` though as it would restrict the locations to choose from, basically leaving location None if not one of those is hit in the intent. I...

The same seems to apply to other placeholders like {temp_max}/{temp_min}/{temp}/{scale}

@krisgesling Most likely found the source. If this is coded like skill-reminder you've used some date_str(time) method to change the {day} output of timely events to 'today'/'tommorow'. Since i'm working...

Sorry for confusing the two. I made a check and in this skill (skill-weather) it only affects 'today', which isn't translated. "wird heute schönes wetter sein" -> today instead of...

not pretty good at js (resp. know how mysql.createPool() is operating), but shouldn't this be ``` connectTimeout: 1000, ssl: config.tls ? {rejectUnauthorized: false} : false, ``` otherwise this might get...