Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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