Skip to content

Commit 60d87f7

Browse files
brtieusmlindauer
authored andcommitted
clean up
1 parent f555b2a commit 60d87f7

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

src/sasctl/pzmm/write_json_files.py

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
import os
1717
from pipreqs import pipreqs
1818

19-
19+
# %%
2020
class JSONFiles:
2121
@classmethod
2222
def writeVarJSON(cls, inputData, isInput=True, jPath=Path.cwd()):
@@ -65,7 +65,6 @@ def writeVarJSON(cls, inputData, isInput=True, jPath=Path.cwd()):
6565
predict = inputDF
6666
else:
6767
predict = inputDF[name]
68-
print(predict)
6968
firstRow = predict.loc[predict.first_valid_index()]
7069
dType = predict.dtypes.name
7170
isStr = type(firstRow) is str
@@ -1109,7 +1108,6 @@ def createRequirementsJSON(self, jPath=Path.cwd()):
11091108

11101109
# Delete requirements.txt file after requirements.json has been written.
11111110
os.remove(requirements_txt_file)
1112-
print('removed!')
11131111

11141112
def get_names(self, stream):
11151113
"""
@@ -1171,4 +1169,4 @@ def get_names(self, stream):
11711169
stack.append(arg)
11721170
else:
11731171
stack.extend(after)
1174-
# %%
1172+

0 commit comments

Comments
 (0)