biomass_transport: simplify read-in

This commit is contained in:
Fabian Neumann 2021-08-09 18:06:24 +02:00
parent 928d1f23ed
commit 12f385ef3f

View File

@ -21,7 +21,7 @@ ENERGY_CONTENT = 4.8 # unit MWh/t (wood pellets)
def get_countries():
pandas_options = dict(
skiprows=list(range(6)),
skiprows=range(6),
header=None,
index_col=0
)