Skip to content

Commit

Permalink
cc: Suppress PyLint message about attributes defined in process()
Browse files Browse the repository at this point in the history
This is a design flaw in the way Processor works. Fixing that is
non-trivial, so suppress for now.
  • Loading branch information
mthuurne committed Apr 21, 2020
1 parent 2b66557 commit 647cd23
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/softfab/pages/ScheduleIndex.py
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,7 @@ def process(self,
req: Request['ScheduleIndex_GET.Arguments'],
user: User
) -> None:
# pylint: disable=attribute-defined-outside-init
self.finishedSchedules = any(
schedule.isDone() for schedule in scheduleDB
)
Expand Down

0 comments on commit 647cd23

Please sign in to comment.