Skip to content

Commit

Permalink
Removed unused imports
Browse files Browse the repository at this point in the history
  • Loading branch information
NeelKondapalli committed Aug 1, 2024
1 parent 063db3a commit 1565aac
Show file tree
Hide file tree
Showing 11 changed files with 3 additions and 12 deletions.
2 changes: 1 addition & 1 deletion festim/boundary_conditions/fluxes/convective_flux.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from festim import FluxBC, k_B
from festim import FluxBC
import fenics as f
import sympy as sp

Expand Down
2 changes: 1 addition & 1 deletion festim/boundary_conditions/fluxes/mass_flux.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from festim import FluxBC, k_B
from festim import FluxBC
import fenics as f
import sympy as sp

Expand Down
1 change: 0 additions & 1 deletion festim/concentration/traps/extrinsic_trap.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
from festim import Trap, as_constant_or_expression
from fenics import NewtonSolver, MPI
import warnings


class ExtrinsicTrapBase(Trap):
Expand Down
1 change: 0 additions & 1 deletion festim/concentration/traps/trap.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
from festim import Concentration, k_B, Material, Theta, RadioactiveDecay
from fenics import *
import sympy as sp
import numpy as np


class Trap(Concentration):
Expand Down
2 changes: 1 addition & 1 deletion festim/exports/derived_quantities/adsorbed_hydrogen.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from festim import SurfaceQuantity, k_B
from festim import SurfaceQuantity
import fenics as f


Expand Down
1 change: 0 additions & 1 deletion festim/meshing/mesh.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import fenics as f
import festim


class Mesh:
Expand Down
1 change: 0 additions & 1 deletion festim/temperature/temperature_solver.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
import festim
import fenics as f
import sympy as sp
import warnings


class HeatTransferProblem(festim.Temperature):
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
from this import s
from festim import TotalSurface
import fenics as f
import pytest
Expand Down
2 changes: 0 additions & 2 deletions test/unit/test_exports/test_txt_exports.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
from festim import TXTExports
import fenics as f
import os
import pytest
from pathlib import Path

Expand Down
1 change: 0 additions & 1 deletion test/unit/test_meshing.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
import fenics
import pytest
from pathlib import Path
import numpy as np


def test_mesh_and_refine_meets_refinement_conditions():
Expand Down
1 change: 0 additions & 1 deletion test/unit/test_mobile.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
import festim
import fenics as f
from ufl.core.multiindex import Index
import pytest


def test_mobile_create_diffusion_form():
Expand Down

0 comments on commit 1565aac

Please sign in to comment.