From 3f298cc939b1c680a95e4c8d5312770a0ca97079 Mon Sep 17 00:00:00 2001 From: Milo Hyben Date: Thu, 18 Jan 2024 16:59:42 +1100 Subject: [PATCH] Fixing linting. --- db/python/tables/bq/billing_filter.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/db/python/tables/bq/billing_filter.py b/db/python/tables/bq/billing_filter.py index 1c333c767..9a379817f 100644 --- a/db/python/tables/bq/billing_filter.py +++ b/db/python/tables/bq/billing_filter.py @@ -1,3 +1,5 @@ +# pylint: disable=unused-import,too-many-instance-attributes + import dataclasses import datetime @@ -44,6 +46,3 @@ class BillingFilter(GenericBQFilterModel): goog_pipelines_worker: GenericBQFilter[str] = None wdl_task_name: GenericBQFilter[str] = None namespace: GenericBQFilter[str] = None - - def __hash__(self): - return super().__hash__()