Disable warning in pylint that causes false positives

Disable C0330 as there are currently some false positives:
https://github.com/PyCQA/pylint/issues/289

Issue: HIC-175
Change-Id: I0f6d9d446dffc72c7ea3989fe59b1adfdcc8acbf
diff --git a/.pylintrc b/.pylintrc
index 396799f..ede30c7 100644
--- a/.pylintrc
+++ b/.pylintrc
@@ -21,3 +21,7 @@
 
 # Maximum number of characters on a single line.
 max-line-length=80
+
+# Disable C0330 as there are currently some false positives:
+# https://github.com/PyCQA/pylint/issues/289
+disable=C0330
\ No newline at end of file