Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update comment filters #286

Merged
merged 2 commits into from
Apr 24, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion wavelink/filters.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
from typing import TYPE_CHECKING, TypedDict

if TYPE_CHECKING:
from typing_extensions import Self, Unpack

Check warning on line 29 in wavelink/filters.py

View workflow job for this annotation

GitHub Actions / Type Coverage and Linting @ 3.x

Import "typing_extensions" could not be resolved from source (reportMissingModuleSource)

from .types.filters import ChannelMix as ChannelMixPayload
from .types.filters import Distortion as DistortionPayload
Expand Down Expand Up @@ -744,7 +744,7 @@
def reset(self) -> None:
"""Method which resets this object to an original state.

Using this method will clear all indivdual filters, and assign the wavelink default classes.
This method will clear all individual filters, and assign the wavelink default classes.
"""
self._reset()

Expand Down
Loading