diff options
| author | Ben Beltran <ben@nsovocal.com> | 2019-04-14 16:21:49 +0200 |
|---|---|---|
| committer | Ben Beltran <ben@nsovocal.com> | 2019-04-14 16:22:03 +0200 |
| commit | f787104e6ae5281ac185a0f8267b23e0a87c4b9e (patch) | |
| tree | cb334f740fa6a1edf25ba0452df29b3d24c7af0b /Sources | |
| parent | b9b93267f08b3054ad6eb19b67a95c5d09435cdb (diff) | |
Fix linting issues in spotify source
Diffstat (limited to 'Sources')
| -rw-r--r-- | Sources/lyricli/sources/spotify_source.swift | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Sources/lyricli/sources/spotify_source.swift b/Sources/lyricli/sources/spotify_source.swift index 2e56c8e..2cd66f5 100644 --- a/Sources/lyricli/sources/spotify_source.swift +++ b/Sources/lyricli/sources/spotify_source.swift @@ -11,7 +11,7 @@ import ScriptingBridge @objc optional var currentTrack: SpotifyTrack? {get} } -extension SBApplication : SpotifyApplication {} +extension SBApplication: SpotifyApplication {} // Source that reads track artist and name from current Spotify track class SpotifySource: Source { @@ -38,4 +38,3 @@ class SpotifySource: Source { } } - |