Skip to content

Commit

Permalink
fix: add __docformat__
Browse files Browse the repository at this point in the history
  • Loading branch information
kjczarne committed Sep 27, 2021
1 parent 6a46f8c commit 74978a3
Show file tree
Hide file tree
Showing 12 changed files with 23 additions and 0 deletions.
1 change: 1 addition & 0 deletions kalash/collectors.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
be relevant to a test definition. For example V1 template
collection looks for `TestCase` instances.
"""
__docformat__ = "google"

from typing import Optional
import unittest
Expand Down
1 change: 1 addition & 0 deletions kalash/config.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
from __future__ import annotations

__docformat__ = "google"
__doc__ = """"""

from collections import defaultdict
Expand Down
2 changes: 2 additions & 0 deletions kalash/filter.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
__docformat__ = "google"

from typing import Dict, Union
from unittest import TestSuite
from functools import reduce
Expand Down
2 changes: 2 additions & 0 deletions kalash/kalash_test_loader.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
__docformat__ = "google"

import os
from typing import Callable
import unittest
Expand Down
2 changes: 2 additions & 0 deletions kalash/last_result_filter.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
__docformat__ = "google"

import os
import re
import datetime
Expand Down
2 changes: 2 additions & 0 deletions kalash/log.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
__docformat__ = "google"

import os
import sys
import logging
Expand Down
2 changes: 2 additions & 0 deletions kalash/metaparser.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
__docformat__ = "google"

from typing import Any, Dict, List, Optional, Union

import yaml
Expand Down
2 changes: 2 additions & 0 deletions kalash/run.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
__docformat__ = "google"

import unittest
import argparse
import xmlrunner
Expand Down
2 changes: 2 additions & 0 deletions kalash/smuggle.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@
Adapted from: https://pypi.org/project/smuggle/ with minor changes
related to path handling.
"""
__docformat__ = "google"

import inspect
import os
import sys
Expand Down
3 changes: 3 additions & 0 deletions kalash/spec.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
from __future__ import annotations

__docformat__ = "google"

from dataclasses import dataclass
from typing import Dict, List

Expand Down
2 changes: 2 additions & 0 deletions kalash/test_case.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
__docformat__ = "google"

from typing import List, Optional
import unittest
import logging
Expand Down
2 changes: 2 additions & 0 deletions kalash/utils.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
__docformat__ = "google"

import datetime


Expand Down

0 comments on commit 74978a3

Please sign in to comment.