Skip to content

Commit d673d2c

Browse files
committed
updating sphinx
1 parent df197c2 commit d673d2c

File tree

2 files changed

+9
-7
lines changed

2 files changed

+9
-7
lines changed

circuitpython_uplot/uplot.py

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,9 @@
2020
https://github.com/adafruit/circuitpython/releases
2121
2222
"""
23+
# pylint: disable=too-many-arguments, too-many-instance-attributes, too-many-locals
24+
# pylint: disable=too-many-statements, unused-import, no-member
25+
# pylint: disable=unused-import, import-outside-toplevel, undefined-variable
2326

2427
try:
2528
from typing import Union, Tuple
@@ -38,11 +41,6 @@
3841
__repo__ = "https://github.com/jposada202020/CircuitPython_uplot.git"
3942

4043

41-
# pylint: disable=too-many-arguments, too-many-instance-attributes, too-many-locals
42-
# pylint: disable=too-many-statements
43-
# pylint: disable=unused-import, import-outside-toplevel, undefined-variable
44-
45-
4644
class Uplot:
4745
"""
4846
Canvas Class to add different elements to the screen.

docs/conf.py

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
1-
# pylint: disable=invalid-name,too-few-public-methods
2-
"""This file is for `sphinx-build` configuration"""
1+
# -*- coding: utf-8 -*-
2+
3+
# SPDX-FileCopyrightText: 2017 Scott Shawcroft, written for Adafruit Industries
4+
#
5+
# SPDX-License-Identifier: MIT
6+
37
import os
48
import sys
59

0 commit comments

Comments
 (0)