diff --git a/.devcontainer/docker-compose.yaml b/.devcontainer/docker-compose.yaml index c5a489d..3ce347a 100644 --- a/.devcontainer/docker-compose.yaml +++ b/.devcontainer/docker-compose.yaml @@ -5,7 +5,6 @@ services: command: sleep infinity depends_on: [browser] volumes: [..:/workspace:cached, build-tmp:/workspace/.build/] - env_file: ../.env browser: image: selenium/standalone-chromium:latest shm_size: 2gb diff --git a/Sources/CLI/CLI.swift b/Sources/CLI/CLI.swift index c2002c9..9cdfcf1 100644 --- a/Sources/CLI/CLI.swift +++ b/Sources/CLI/CLI.swift @@ -6,7 +6,8 @@ struct CLI: AsyncParsableCommand { static let configuration: CommandConfiguration = .init( commandName: "putty", abstract: "A utility for getting comic data from GoComics.com.", - subcommands: [Scrape.self]) + subcommands: [Scrape.self], + ) } struct Scrape: AsyncParsableCommand { diff --git a/Sources/PuttyKit/Fetchers/PageFetcher.swift b/Sources/PuttyKit/Fetchers/PageFetcher.swift index dc870b4..74b8116 100644 --- a/Sources/PuttyKit/Fetchers/PageFetcher.swift +++ b/Sources/PuttyKit/Fetchers/PageFetcher.swift @@ -113,10 +113,6 @@ public final class PageFetcher { } } -// MARK: - Errors - -// MARK: - Usage Example - public extension PageFetcher { /// Convenience method to fetch GoComics A-Z page func fetchAToZ() async throws -> String {