corrcted json file name
Browse files- lib/code_reviewer.py +1 -1
lib/code_reviewer.py
CHANGED
@@ -33,7 +33,7 @@ class CodeReviewer:
|
|
33 |
Returns:
|
34 |
Dict: The code standards in dictionary form.
|
35 |
"""
|
36 |
-
standards_path = os.path.join(os.path.dirname(os.path.dirname(__file__)), "standards", "
|
37 |
with open(standards_path, 'r') as f:
|
38 |
return json.load(f)
|
39 |
|
|
|
33 |
Returns:
|
34 |
Dict: The code standards in dictionary form.
|
35 |
"""
|
36 |
+
standards_path = os.path.join(os.path.dirname(os.path.dirname(__file__)), "standards", "ansible_code_standards.json")
|
37 |
with open(standards_path, 'r') as f:
|
38 |
return json.load(f)
|
39 |
|