Skip to content
This repository has been archived by the owner on Nov 27, 2023. It is now read-only.

Commit

Permalink
Fix collections.Iterable being deprecated
Browse files Browse the repository at this point in the history
  • Loading branch information
ebranlard committed Nov 15, 2023
1 parent f1c3bbd commit 45be585
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions pyFAST/case_generation/case_gen.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
import os
import collections
try:
import collections.abc as collections
except:
import collections

import glob
import pandas as pd
import numpy as np
Expand All @@ -11,7 +15,9 @@
import pyFAST.input_output.fast_input_file as fi
import pyFAST.case_generation.runner as runner
import pyFAST.input_output.postpro as postpro
from pyFAST.input_output.fast_wind_file import FASTWndFilefrom pyFAST.input_output.rosco_performance_file import ROSCOPerformanceFilefrom pyFAST.input_output.csv_file import CSVFile
from pyFAST.input_output.fast_wind_file import FASTWndFile
from pyFAST.input_output.rosco_performance_file import ROSCOPerformanceFile
from pyFAST.input_output.csv_file import CSVFile
# --------------------------------------------------------------------------------}
# --- Template replace
# --------------------------------------------------------------------------------{
Expand Down

0 comments on commit 45be585

Please sign in to comment.