Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions dsharp_opac/dsharp_opac.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
- dielectric functions are objects, see bhmie.diel_*
the functions `diel_*.nk` return the optical properties
"""
from __future__ import print_function
import numpy as np
import os
import sys
Expand Down Expand Up @@ -219,7 +218,7 @@ def download(packagedir):
raise ex


class diel_const(object):
class diel_const:
"""
Abstract class for dielectric constants objects
"""
Expand Down Expand Up @@ -1355,7 +1354,7 @@ def fct(x, a, b, c):
self.print_reference(', or the specific reference for that species')


class diel_mixed():
class diel_mixed:
"""
This is a dielectric_constant class that mixes the various
dielectric constants given their abundances.
Expand Down