agencyenterprise / neurotechdevkit

Neurotech Development Kit (NDK)
https://agencyenterprise.github.io/neurotechdevkit/
Apache License 2.0
117 stars 10 forks source link

fix typo: type-hint vs default-value #125

Closed charlesbmi closed 1 year ago

charlesbmi commented 1 year ago

Introduction

Noticed there was a typo with the type-hint being written as a default value:

    def _compile_problem(self, center_frequency=float) -> stride.Problem:

Changes

Changed to type hint (same as other scenarios):

    def _compile_problem(self, center_frequency: float) -> stride.Problem: