cage-challenge-4 icon indicating copy to clipboard operation
cage-challenge-4 copied to clipboard

Minor Bugs in GreenAccessService

Open sjenkins20 opened this issue 5 months ago • 0 comments

These are just minor things found in GreenAccessService.py that relate to corner cases.

On line 112,

if len(reachable_hosts) < 0

this can never happen as len is always greater than or equal to zero. Did you mean to say < 1?

On line 128, session.active

is undefined and I think this should be,

self.session.active

sjenkins20 avatar Sep 20 '24 09:09 sjenkins20