Skip to content

Commit

Permalink
tries fixing server startup
Browse files Browse the repository at this point in the history
  • Loading branch information
WolfgangFahl committed Aug 22, 2024
1 parent d2839d2 commit 749a59f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion skg/sotsog.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,12 @@ class SotSog:
Standing on the shoulders of giants
"""

def __init__(self):
def __init__(self,debug:bool=False):
"""
constructor
"""
self.debug=debug
Node.debug = self.debug
self.wikipedia_url = (
"https://en.wikipedia.org/wiki/Standing_on_the_shoulders_of_giants"
Expand Down
4 changes: 2 additions & 2 deletions skg/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@
@author: wf
"""

from dataclasses import dataclass
import skg


@dataclass
class Version(object):
"""
Version handling for pysotsog
Expand Down

0 comments on commit 749a59f

Please sign in to comment.