Skip to content

Commit

Permalink
Some lints fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
spirali committed Jan 19, 2024
1 parent 0342f48 commit ac50542
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 4 deletions.
1 change: 0 additions & 1 deletion interlab/actor/memory/list_memory.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
import warnings
from typing import Any, Callable

from .base import BaseMemory, BaseMemoryItem
Expand Down
2 changes: 0 additions & 2 deletions interlab/environment/experimental/monitor.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
from typing import Any

import numpy as np
from matplotlib import pyplot as plt

Expand Down
2 changes: 1 addition & 1 deletion interlab/environment/experimental/tree.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,6 @@ def helper(env, depth):
children.append(child)
return EnvNode(env, children)

with TracingNode(f"root") as ctx:
with TracingNode("root") as ctx:
ctx.add_input("environment", environment)
return helper(environment, 0)

0 comments on commit ac50542

Please sign in to comment.