QuackatronHQ / Gigarepo

Anomalous backslash detected PY-W0073
Bug risk
Major
24 days ago2 years old
Anomalous backslash in string: '\c'. String constant might be missing an r prefix.
10        self.config = self.load_config()
11
12    def load_config(self):
13        with open("C:\config.json") as file:14            file_contents = file.read()
15            config = json.loads(file_contents)
16