Skip to content

Commit e3ab0c3

Browse files
committed
chore: Disable module docstrings
1 parent 1e92cd2 commit e3ab0c3

File tree

13 files changed

+2
-22
lines changed

13 files changed

+2
-22
lines changed

pyproject.toml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,8 @@ unfixable = [
4242
"ERA001", # Commented out code
4343
]
4444
ignore = [
45+
"D100", # Missing docstring in a public package
46+
"D104", # Missing docstring in a public package
4547
"D203", # Would put a blank line before class docstrings
4648
"D212", # Would put the summary on the same line as the docstring qoutes
4749
"COM812", # Conflicts with formatter
Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +0,0 @@
1-
"""The music player core module."""

src/music_player/core/music/abstractions/__init__.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
"""Abstractions for the music player core module."""
21

32
__all__ = ['MusicProvider', 'Player', 'Queue', 'RepeatMode']
43

src/music_player/core/music/abstractions/player.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
"""Abstract base class for a music player."""
2-
31
__all__ = ['Player']
42

53
from abc import ABC, abstractmethod

src/music_player/core/music/abstractions/queue.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
"""Abstract base class for a track queue."""
2-
31
__all__ = ['Queue', 'RepeatMode']
42

53
from abc import ABC, abstractmethod

src/music_player/core/music/exceptions/__init__.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
"""Exceptions for the music player core module."""
2-
31
__all__ = [
42
'AlreadyPlayingError',
53
'NotPlayingError',

src/music_player/core/music/exceptions/already_playing_error.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
"""Raised when trying to play a track while another is already playing."""
2-
31
__all__ = ['AlreadyPlayingError']
42

53

src/music_player/core/music/exceptions/not_playing_error.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
"""Raised when no track is playing, but the operation requires one to play."""
2-
31
__all__ = ['NotPlayingError']
42

53

src/music_player/core/music/exceptions/position_out_of_bounds_error.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
"""Raised when trying to set the playback position outside the bounds of the current track."""
2-
31
__all__ = ['PositionOutOfBoundsError']
42

53

src/music_player/core/music/exceptions/queue_out_of_bounds_error.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
"""Raised when trying to access a track or queue index that is not in the queue."""
2-
31
__all__ = ['QueueOutOfBoundsError']
42

53

0 commit comments

Comments
 (0)