Skip to content

Commit

Permalink
Replace manimlib imports with manim
Browse files Browse the repository at this point in the history
  • Loading branch information
eulertour committed May 21, 2020
1 parent a4835db commit 82f6572
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion example_scenes/basic.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env python

from manimlib.imports import *
from manim.imports import *

# To watch one of these scenes, run the following:
# python -m manim example_scenes.py SquareToCircle -pl
Expand Down
2 changes: 1 addition & 1 deletion logo/logo.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from manimlib.imports import *
from manim.imports import *

NEW_BLUE = "#68a8e1"

Expand Down
2 changes: 1 addition & 1 deletion manim/imports.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
Rather than having a large pile of "from <module> import *" at the top of every such
script, the intent of this file is to make it so that one can just include
"from manimlib.imports import *". The effects of adding more modules
"from manim.imports import *". The effects of adding more modules
or refactoring the library on current or older scene scripts should be entirely
addressible by changing this file.
Expand Down
2 changes: 1 addition & 1 deletion tests/tests_sample_scenes.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from manimlib.imports import *
from manim.imports import *

# This file is intended to test any new feature added.
# Feel free to add a test or to modify one when adding a new/changing a feature.
Expand Down

0 comments on commit 82f6572

Please sign in to comment.