AttributeError: module 'dolfinx.mesh' has no attribute 'geometry'. Did you mean: 'Geometry'?

The MWE.py below gives the error as per subject line

==================

# Laplace Eigenvalue Equation

import sys
from scipy import sparse
import primme
import importlib.util
from mpi4py import MPI

+

import numpy as np

import ufl
from dolfinx import fem, io, mesh
from dolfinx.fem import Function
from dolfinx.fem.petsc import LinearProblem
from ufl import ds, dx, grad, inner
from dolfinx.fem.petsc import assemble_matrix
DEG_U=7
V_U = fem.functionspace(mesh, (“Lagrange”,DEG_U))

Regards

Moritz

You have not defined a dolfinx.mesh.Mesh, that should be input to

Currently, you are passing in the module dolfinx.mesh, due to the import: