Skip to content

Commit

Permalink
馃帹 Make pre-commit happy
Browse files Browse the repository at this point in the history
  • Loading branch information
foosel committed Apr 29, 2024
1 parent 912ee7c commit 4b3f420
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/octoprint/cli/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,10 +47,10 @@ def create_client(
try:
with open(cli_key_file, encoding="utf8") as f:
apikey = f.readline()
except Exception:
except Exception as exc:
raise FatalStartupError(
f"Can not authenticate with server at {host}:{port}, no key"
)
) from exc

baseurl = octoprint_client.build_base_url(
https=https,
Expand Down
1 change: 1 addition & 0 deletions src/octoprint/util/fixes.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""
This module contains a functions that monkey patch third party dependencies in the one or other way.
"""

__license__ = "GNU Affero General Public License http://www.gnu.org/licenses/agpl.html"

0 comments on commit 4b3f420

Please sign in to comment.