Skip to content

Commit 2d529bf

Browse files
committed
Taking leotrs's review in account
1 parent beeb9dc commit 2d529bf

File tree

3 files changed

+3
-5
lines changed

3 files changed

+3
-5
lines changed

logo/logo.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -98,9 +98,7 @@ def get_h_line(input_tracker):
9898
graph_dot_p2.move_to(get_graph_point(input_tracker_p2))
9999

100100
#
101-
self.play(
102-
ShowCreation(graph),
103-
)
101+
self.play(ShowCreation(graph))
104102
# Animacion del punto a
105103
self.add_foreground_mobject(graph_dot_p1)
106104
self.add_foreground_mobject(graph_dot_p2)

manim/animation/numbers.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ def __init__(self, decimal_mob, number_update_func, **kwargs):
2323

2424
def check_validity_of_input(self, decimal_mob):
2525
if not isinstance(decimal_mob, DecimalNumber):
26-
raise TypeError("ChangingDecimal can only take " "in a DecimalNumber")
26+
raise TypeError("ChangingDecimal can only take in a DecimalNumber")
2727

2828
def yell_about_depricated_configuration(self, **kwargs):
2929
# Obviously this would optimally be removed at

manim/mobject/svg/svg_mobject.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -396,7 +396,7 @@ def handle_command(self, command, coord_string):
396396
# TODO, this is a suboptimal approximation
397397
new_points = np.append([new_points[0]], new_points, axis=0)
398398
elif command == "A": # elliptical Arc
399-
raise NotImplementedError("Not yet implemented")
399+
raise NotImplementedError()
400400
elif command == "Z": # closepath
401401
return
402402

0 commit comments

Comments
 (0)