From 26d1ad9c79ed33f480ca804f8b7ae1ef57bac336 Mon Sep 17 00:00:00 2001 From: Pavel 'LEdoian' Turinsky Date: Sun, 9 Jan 2022 19:20:16 +0100 Subject: [PATCH] Remove forgotten reset of self.options --- authorizedkeys/parser.py | 1 - 1 file changed, 1 deletion(-) diff --git a/authorizedkeys/parser.py b/authorizedkeys/parser.py index 9353706..8568b9d 100644 --- a/authorizedkeys/parser.py +++ b/authorizedkeys/parser.py @@ -43,7 +43,6 @@ class AuthorizedKey: self.options = None # Now only the key follows, so this is simple - self.options = None split = line.split(' ', maxsplit=2) self.type = split[0] self.key_b64 = split[1]