@@ -13,6 +13,10 @@ Introduction
1313 :target: https://github.com/adafruit/Adafruit_CircuitPython_Display_Button/actions
1414 :alt: Build Status
1515
16+ .. image :: https://img.shields.io/badge/code%20style-black-000000.svg
17+ :target: https://github.com/psf/black
18+ :alt: Code Style: Black
19+
1620UI Buttons for displayio
1721
1822
@@ -46,8 +50,8 @@ To install in a virtual environment in your current project:
4650.. code-block :: shell
4751
4852 mkdir project-name && cd project-name
49- python3 -m venv .env
50- source .env /bin/activate
53+ python3 -m venv .venv
54+ source .venv /bin/activate
5155 pip3 install adafruit-circuitpython-display-button
5256
5357 Usage Example
@@ -80,15 +84,15 @@ To build this library locally you'll need to install the
8084
8185.. code-block :: shell
8286
83- python3 -m venv .env
84- source .env /bin/activate
87+ python3 -m venv .venv
88+ source .venv /bin/activate
8589 pip install circuitpython-build-tools
8690
8791 Once installed, make sure you are in the virtual environment:
8892
8993.. code-block :: shell
9094
91- source .env /bin/activate
95+ source .venv /bin/activate
9296
9397 Then run the build:
9498
@@ -104,8 +108,8 @@ install dependencies (feel free to reuse the virtual environment from above):
104108
105109.. code-block :: shell
106110
107- python3 -m venv .env
108- source .env /bin/activate
111+ python3 -m venv .venv
112+ source .venv /bin/activate
109113 pip install Sphinx sphinx-rtd-theme
110114
111115 Now, once you have the virtual environment activated:
0 commit comments