From 7d85c34a86e50312790ff7a4386df9acfb388755 Mon Sep 17 00:00:00 2001 From: Adreaming5101 Date: Mon, 25 Dec 2023 15:01:33 +0800 Subject: [PATCH 1/2] add new rules --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index 0d20b64..31c8ee8 100755 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ *.pyc +*.idea \ No newline at end of file From eb5ae45096a076438618138023f0e5c4d9223368 Mon Sep 17 00:00:00 2001 From: Adreaming5101 Date: Mon, 25 Dec 2023 15:05:31 +0800 Subject: [PATCH 2/2] Fixed ] error in line 23 of access.py --- listings/access.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/listings/access.py b/listings/access.py index 968c9af..9e08afa 100755 --- a/listings/access.py +++ b/listings/access.py @@ -20,4 +20,4 @@ def __delattr__(self, name): if name == 'value': super(AccessCounter, self).__setattr__('counter', self.counter + 1) - super(AccessCounter, self).__delattr__(name)] + super(AccessCounter, self).__delattr__(name)