Skip to content

Commit

Permalink
remove unnecessary change
Browse files Browse the repository at this point in the history
  • Loading branch information
isuruf committed Sep 29, 2016
1 parent f48f3d5 commit 3caaafb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions sympy/physics/vector/functions.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from __future__ import print_function, division

from sympy.core.backend import (sympify, diff, sin, cos, Matrix, symbols,
Function, S)
Function, S, Symbol)
from sympy import integrate, trigsimp
from sympy.core.compatibility import reduce
from .vector import Vector, _check_vector
Expand Down Expand Up @@ -608,5 +608,5 @@ def dynamicsymbols(names, level=0):
return reduce(diff, [t] * level, esses(t))


dynamicsymbols._t = symbols('t')
dynamicsymbols._t = Symbol('t')
dynamicsymbols._str = '\''

0 comments on commit 3caaafb

Please sign in to comment.