Commit c66332d3 authored by Antonio Caceres's avatar Antonio Caceres
Browse files

Add Pylance type ignore comments.

parent 58b6907a
No related merge requests found
Showing with 11 additions and 11 deletions
+11 -11
......@@ -4,14 +4,14 @@ Helper functions to make a pendulum.
"""
from vpython import ( # type: ignore
box,
color,
cos,
cylinder,
vector,
sin,
sphere,
textures,
box, # type: ignore
color, # type: ignore
cos, # type: ignore
cylinder, # type: ignore
vector, # type: ignore
sin, # type: ignore
sphere, # type: ignore
textures, # type: ignore
)
from support.types import Pendulum, VPythonColor, VPythonTexture
......
......@@ -4,9 +4,9 @@ Helper functions and implementation of a Newton's cradle simulation.
"""
from vpython import ( # type: ignore
cos,
sin,
vector,
cos, # type: ignore
sin, # type: ignore
vector, # type: ignore
)
from support.types import PendulumEntry
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment