diff options
author | BonfaceKilz | 2021-05-19 21:32:24 +0300 |
---|---|---|
committer | BonfaceKilz | 2021-05-20 23:25:59 +0300 |
commit | 7004b5ea48309d896eec5c1e9fcc47a5ea84fd34 (patch) | |
tree | daaaccb895c2aba4e32fcb4d02e37893303925ff /gn3 | |
parent | 76418ebdbd9f89f04960646298c55098e20afefb (diff) | |
download | genenetwork3-7004b5ea48309d896eec5c1e9fcc47a5ea84fd34.tar.gz |
db: phenotype: Make "pylint: disable=[R0902]" global for file
Diffstat (limited to 'gn3')
-rw-r--r-- | gn3/db/phenotypes.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gn3/db/phenotypes.py b/gn3/db/phenotypes.py index 46a54bd..355c2e2 100644 --- a/gn3/db/phenotypes.py +++ b/gn3/db/phenotypes.py @@ -1,3 +1,4 @@ +# pylint: disable=[R0902] """This contains all the necessary functions that access the phenotypes from the db""" from dataclasses import dataclass, asdict, astuple @@ -6,7 +7,6 @@ from typing import Any, Optional from MySQLdb import escape_string -# pylint: disable=[R0902] @dataclass(frozen=True) class Phenotype: """Data Type that represents a Phenotype""" |