Skip to content

Commit

Permalink
Merge pull request #657 from embar-/patch-1
Browse files Browse the repository at this point in the history
Make SafeEyes compatible with Python 3.6 again
  • Loading branch information
archisman-panigrahi authored Oct 17, 2024
2 parents a3ca7b7 + 32f1343 commit 6da10e6
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
5 changes: 3 additions & 2 deletions safeeyes/model.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@
import random
from enum import Enum
from dataclasses import dataclass
from typing import Optional, Union

from packaging.version import parse

Expand Down Expand Up @@ -424,11 +425,11 @@ def build(cls, name, icon_path, icon_id, action):
@dataclass
class PluginDependency:
message: str
link: str|None = None
link: Optional[str] = None
retryable: bool = False

class RequiredPluginException(Exception):
def __init__(self, plugin_id, plugin_name: str, message: str|PluginDependency):
def __init__(self, plugin_id, plugin_name: str, message: Union[str, PluginDependency]):
if isinstance(message, PluginDependency):
msg = message.message
else:
Expand Down
3 changes: 2 additions & 1 deletion safeeyes/plugins/healthstats/plugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,8 @@ def init(ctx, safeeyes_config, plugin_config):
'total_resets': 0,
}

session = context['session']['plugin'].get('healthstats', {}) | defaults
session = context['session']['plugin'].get('healthstats', {}).copy()
session.update(defaults)
if 'no_of_breaks' in session:
# Ignore old format session.
session = defaults
Expand Down

0 comments on commit 6da10e6

Please sign in to comment.