Skip to content

Commit

Permalink
flake8
Browse files Browse the repository at this point in the history
  • Loading branch information
Christian-B committed Oct 17, 2024
1 parent 821913e commit 90784c3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions spinn_utilities/safe_eval.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,8 @@
# See the License for the specific language governing permissions and
# limitations under the License.

from types import CodeType, ModuleType
from types import ModuleType
from typing import Any, Callable, Dict, Union
from typing_extensions import Buffer


class SafeEval(object):
Expand Down Expand Up @@ -46,7 +45,8 @@ class SafeEval(object):
"""
__slots__ = ["_environment"]

def __init__(self, *args: Union[Callable, ModuleType], **kwargs: Any) -> None:
def __init__(self, *args: Union[Callable, ModuleType],
**kwargs: Any) -> None:
"""
:param args:
The symbols to use to populate the global reference table.
Expand Down

0 comments on commit 90784c3

Please sign in to comment.