File tree Expand file tree Collapse file tree 4 files changed +6
-6
lines changed Expand file tree Collapse file tree 4 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 2
2
import json
3
3
import os
4
4
5
- from tracer import Randomize
6
- from tracer . Commander import Commander
7
- from tracer . Tracer import Tracer
5
+ from algorithm_visualizer import randomize as Randomize
6
+ from algorithm_visualizer . commander import Commander
7
+ from algorithm_visualizer . tracer import Tracer
8
8
9
9
__all__ = ("Randomize" , "Commander" , "Tracer" )
10
10
Original file line number Diff line number Diff line change 1
1
import string
2
2
from typing import Any , Dict , List
3
3
4
- from tracer import Randomize
4
+ from algorithm_visualizer import randomize
5
5
6
6
_MAX_COMMANDS = 1000000
7
7
_MAX_OBJECTS = 100
8
8
9
9
10
10
class Commander :
11
- _keyRandomizer = Randomize .String (8 , string .ascii_lowercase + string .digits )
11
+ _keyRandomizer = randomize .String (8 , string .ascii_lowercase + string .digits )
12
12
_objectCount = 0
13
13
commands : List [Dict [str , Any ]] = []
14
14
File renamed without changes.
Original file line number Diff line number Diff line change 1
- from tracer import Commander
1
+ from algorithm_visualizer import Commander
2
2
3
3
4
4
class Tracer (Commander ):
You can’t perform that action at this time.
0 commit comments