Skip to content

Commit d632cb0

Browse files
committed
Remove the monkey patch
1 parent e1aaf7f commit d632cb0

File tree

1 file changed

+0
-11
lines changed

1 file changed

+0
-11
lines changed

tests/test_importers/test_rdfs_importer.py

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,5 @@
11
# -*- coding: utf-8 -*-
22

3-
# Monkey patching jsonobj to fix windows issue
4-
import platform
5-
6-
if platform.system() == "Windows":
7-
from jsonasobj2 import JsonObj
8-
if not hasattr(JsonObj, 'values'):
9-
def _values(self):
10-
return dict(self).values()
11-
JsonObj.values = _values
12-
13-
143
from io import StringIO
154
import unittest
165
import os

0 commit comments

Comments
 (0)