From 369c3abc7dabf5a92c0f7eda78595b9aa53aa6f0 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 24 May 2024 18:59:55 +0000 Subject: [PATCH 1/2] Bump codespell from 2.2.6 to 2.3.0 Bumps [codespell](https://github.com/codespell-project/codespell) from 2.2.6 to 2.3.0. - [Release notes](https://github.com/codespell-project/codespell/releases) - [Commits](https://github.com/codespell-project/codespell/compare/v2.2.6...v2.3.0) --- updated-dependencies: - dependency-name: codespell dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- poetry.lock | 10 +++++----- pyproject.toml | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/poetry.lock b/poetry.lock index 2697308..dd2bf8c 100644 --- a/poetry.lock +++ b/poetry.lock @@ -1,14 +1,14 @@ -# This file is automatically @generated by Poetry 1.7.1 and should not be changed by hand. +# This file is automatically @generated by Poetry 1.8.2 and should not be changed by hand. [[package]] name = "codespell" -version = "2.2.6" +version = "2.3.0" description = "Codespell" optional = false python-versions = ">=3.8" files = [ - {file = "codespell-2.2.6-py3-none-any.whl", hash = "sha256:9ee9a3e5df0990604013ac2a9f22fa8e57669c827124a2e961fe8a1da4cacc07"}, - {file = "codespell-2.2.6.tar.gz", hash = "sha256:a8c65d8eb3faa03deabab6b3bbe798bea72e1799c7e9e955d57eca4096abcff9"}, + {file = "codespell-2.3.0-py3-none-any.whl", hash = "sha256:a9c7cef2501c9cfede2110fd6d4e5e62296920efe9abfb84648df866e47f58d1"}, + {file = "codespell-2.3.0.tar.gz", hash = "sha256:360c7d10f75e65f67bad720af7007e1060a5d395670ec11a7ed1fed9dd17471f"}, ] [package.extras] @@ -87,4 +87,4 @@ dev = ["doc8", "flake8", "flake8-import-order", "rstcheck[sphinx]", "sphinx"] [metadata] lock-version = "2.0" python-versions = "^3.9" -content-hash = "e724037a5baeda62bc2ea9e6d0317bcb3f7430caeae59634f0b9321222ffd3cc" +content-hash = "871488766da9d6043b488ec585f805058b54cb054784a6172b76e47cb8f454c7" diff --git a/pyproject.toml b/pyproject.toml index ad1390a..5aa81ba 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -9,7 +9,7 @@ python = "^3.9" [tool.poetry.dev-dependencies] yamllint = "^1.35.1" -codespell = "^2.2.6" +codespell = "^2.3.0" [build-system] requires = ["poetry-core>=1.0.0"] From 1eba144dcb151f2ad2a07f9d10ecc57114b8fb17 Mon Sep 17 00:00:00 2001 From: per1234 Date: Fri, 24 May 2024 22:32:50 -0700 Subject: [PATCH 2/2] Correct typos in comment and message --- main.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/main.go b/main.go index 6455435..e599826 100644 --- a/main.go +++ b/main.go @@ -136,7 +136,7 @@ func main() { if *hasDownloadFile { go http.ListenAndServe(":"+*networkPort, http.FileServer(http.Dir(filepath.Dir(*sketchPath)))) - // find my ip if not specified + // find my IP if not specified ip := getMyIP(net.ParseIP(*networkAddress)) url := "http://" + ip.String() + ":" + *networkPort + "/" + filepath.Base(*sketchPath) sketchData = bytes.NewBufferString(url) @@ -219,7 +219,7 @@ func main() { resp, err := httpClient.Post(httpheader+*networkAddress+":"+*networkPort+*resetEndpoint, "", nil) if err != nil { if *verbose { - fmt.Println("Failed to reset the board, please reset maually") + fmt.Println("Failed to reset the board, please reset manually") } os.Exit(0) }