Skip to content

Commit f58e19e

Browse files
committed
Fix imports to PEP8 standards #143
1 parent 2310a72 commit f58e19e

File tree

1 file changed

+7
-5
lines changed

1 file changed

+7
-5
lines changed

src/sasctl/pzmm/write_json_files.py

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,20 @@
11
# Copyright (c) 2020, SAS Institute Inc., Cary, NC, USA. All Rights Reserved.
22
# SPDX-License-Identifier: Apache-2.0
33

4-
# %%
5-
from pathlib import Path
6-
import sys
4+
# Standard Library Imports
75
import getpass
6+
import importlib
87
import json
9-
import pandas as pd
108
import math
119
import pickle
1210
import pickletools
11+
import sys
1312
import warnings
14-
import importlib
1513
from collections.abc import Iterable
14+
from pathlib import Path
15+
16+
# Third Party Imports
17+
import pandas as pd
1618

1719

1820
def flatten(nestedList):

0 commit comments

Comments
 (0)