Skip to content

Commit

Permalink
Fix bug
Browse files Browse the repository at this point in the history
  • Loading branch information
calebwherry committed Feb 5, 2024
1 parent 4044e06 commit 2eb1500
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions howso/direct/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -3112,7 +3112,7 @@ def _execute(self, label: str, payload: Any) -> Any:
return self._deserialize(result)

@classmethod
def _verify_trainee_header(cls, trainee_filepath: Path):
def _verify_trainee_header(self, trainee_filepath: Path):
"""
Verifies the trainee header for compatibility with Amalgam binary.
Expand All @@ -3121,7 +3121,7 @@ def _verify_trainee_header(cls, trainee_filepath: Path):
trainee_filepath : str
Path to trainee.
"""
amalgam_version = cls.amalgam.get_version_string()
amalgam_version = self.amlg.get_version_string()
amalgam_major, amalgam_minor, amalgam_patch, *amalgam_suffix = amalgam_version.split('.')

if trainee_filepath.exists():
Expand Down

0 comments on commit 2eb1500

Please sign in to comment.