Skip to content

Commit

Permalink
Replace import statements with using for named imports
Browse files Browse the repository at this point in the history
It is considered better style to do `using Foos: foo` than
`import Foos.foo`.
  • Loading branch information
anowacki committed Sep 28, 2020
1 parent 43ced42 commit 972f6d4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/CIJ.jl
Expand Up @@ -10,10 +10,10 @@ Deal with linear elastic constants, especially for geophysical applications.
"""
module CIJ

import Dates.now
using Dates: now
import LinearAlgebra
import LinearAlgebra: cross, dot, norm
import Printf.@printf
using LinearAlgebra: cross, dot, norm
using Printf: @printf

using StaticArrays
using Rotations
Expand Down

0 comments on commit 972f6d4

Please sign in to comment.