Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
branchvincent authored and manfred-kaiser committed Apr 24, 2024
1 parent e451b3f commit 526cedc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sshmitm/appimage.py
Expand Up @@ -103,7 +103,7 @@ def __init__(self) -> None:
self.config = ConfigParser()
self.config.read_string(DEFAULT_CONFIG)
config_path = resources.files("sshmitm.data").joinpath("appimage.ini")
self.config.read_string(config_path.read_text())
self.config.read_string(config_path.read_text(encoding="utf-8"))

self.default_ep = self.config.get("appimage", "entry_point", fallback=None)
argv0_complete = os.environ.get("ARGV0")
Expand Down

0 comments on commit 526cedc

Please sign in to comment.