From 8bf42ab18dac0fed8de72a2d41b924d9b91ed1f9 Mon Sep 17 00:00:00 2001 From: Galen Seilis Date: Fri, 14 Jun 2024 13:08:51 -0700 Subject: [PATCH] Update import_params.py Deleted these comments: # print(arrival_distributions) # print(service_distributions) # print(number_of_servers) I suspect these print statements were used temporarily for development or debugging. They don't need to be in the production form of the code. They add no functionality in this commented-out form. --- ciw/import_params.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/ciw/import_params.py b/ciw/import_params.py index 0ed6c8a..79c1eaa 100644 --- a/ciw/import_params.py +++ b/ciw/import_params.py @@ -27,9 +27,6 @@ def create_network( """ Takes in kwargs, creates dictionary. """ - # print(arrival_distributions) - # print(service_distributions) - # print(number_of_servers) if ( arrival_distributions == None or number_of_servers == None