Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

expression changed to empty string from empty list, skipping empty patch #19

Closed
wants to merge 3 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ jobs:
DEBUG: true

fixType: batch
files: all
files: changed

prComment: true
- name: get uploaded app
Expand Down
4 changes: 2 additions & 2 deletions app/commands/IgnoreCommand.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
from typing import override
import sys
import logging

# trigger
class IgnoreCommand(BlabberCommand):
logger = logging.getLogger("VeraDemo:IgnoreCommand")

Expand Down Expand Up @@ -35,4 +35,4 @@ def execute(self, blabberUsername):

# TODO: Implement exceptions

self.logger.error("Unexpected error:", sys.exc_info()[0])
self.logger.error("Unexpected error:", sys.exc_info()[0])
4 changes: 2 additions & 2 deletions app/views/resetController.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
from app.models import create



#trigger

##################RESET CONTROLLER#####################
logger = logging.getLogger("VeraDemo:resetController")
Expand Down Expand Up @@ -180,4 +180,4 @@ def loadFile(filename):
lines = file.readlines()
for line in lines:
line.strip()
return lines
return lines
Loading