Skip to content

Commit 7dc2ca1

Browse files
committed
Fix unused imports for linter
1 parent 486dd80 commit 7dc2ca1

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

python-init-py/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22

33
This folder contains the code discussed in the Real Python tutorial on [Python's `__init__.py` file](https://realpython.com/python-init-py/).
44

5-
You can start a Python interpreter inside this folder, then interact with the modules like shown in the tutorial.
5+
You can start a Python interpreter inside this folder, then interact with the modules like shown in the tutorial. Some of the code is currently commented-out. Follow the tutorial instructions for when to uncomment.

python-init-py/media_project/mediatools/__init__.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
__version__ = "0.1.0"
44

5-
from .audio.utils import enhance as audio_enhance
6-
from .audio.utils import wobbulate
7-
from .graphics.utils import enhance as graphics_enhance
8-
from .graphics.utils import solarize
5+
# from .audio.utils import enhance as audio_enhance
6+
# from .audio.utils import wobbulate
7+
# from .graphics.utils import enhance as graphics_enhance
8+
# from .graphics.utils import solarize

0 commit comments

Comments
 (0)