Skip to content
This repository has been archived by the owner on Dec 30, 2022. It is now read-only.

Commit

Permalink
Follow isort formatting
Browse files Browse the repository at this point in the history
issue10928
  • Loading branch information
cedk committed Dec 11, 2021
1 parent fa29eef commit f778a36
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 14 deletions.
3 changes: 3 additions & 0 deletions .isort.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[settings]
multi_line_output=4
known_first_party=trytond
3 changes: 1 addition & 2 deletions __init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,8 @@
# this repository contains the full copyright notices and license terms.

from trytond.pool import Pool
from . import product
from . import stock

from . import product, stock
from .stock import LotSledMixin

__all__ = ['LotSledMixin', 'register']
Expand Down
2 changes: 1 addition & 1 deletion product.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# This file is part of Tryton. The COPYRIGHT file at the top level of
# this repository contains the full copyright notices and license terms.
from trytond.pool import PoolMeta
from trytond.model import fields
from trytond.pool import PoolMeta
from trytond.pyson import Eval

from .stock import DATE_STATE
Expand Down
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@
import os
import re
from configparser import ConfigParser
from setuptools import setup, find_packages

from setuptools import find_packages, setup


def read(fname):
Expand Down
10 changes: 5 additions & 5 deletions stock.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,18 +2,18 @@
# this repository contains the full copyright notices and license terms.
import datetime

from sql import Union, Join, Select, Table, Null, As
from sql import As, Join, Null, Select, Table, Union
from sql.conditionals import Greatest

from trytond.i18n import gettext
from trytond.pool import PoolMeta, Pool
from trytond.model import ModelView, Workflow, ModelSQL, ValueMixin, fields
from trytond.model import ModelSQL, ModelView, ValueMixin, Workflow, fields
from trytond.model.exceptions import AccessError
from trytond.modules.stock.exceptions import PeriodCloseError
from trytond.pool import Pool, PoolMeta
from trytond.pyson import Eval
from trytond.transaction import Transaction
from trytond.tools import grouped_slice
from trytond.transaction import Transaction

from trytond.modules.stock.exceptions import PeriodCloseError
from .exceptions import LotExpiredError, LotExpiredWarning

DATE_STATE = [
Expand Down
9 changes: 4 additions & 5 deletions tests/test_stock_lot_sled.py
Original file line number Diff line number Diff line change
@@ -1,15 +1,14 @@
# This file is part of Tryton. The COPYRIGHT file at the top level of
# this repository contains the full copyright notices and license terms.
import unittest
import datetime
import unittest

import trytond.tests.test_tryton
from trytond.modules.company.tests import (
CompanyTestMixin, create_company, set_company)
from trytond.pool import Pool
from trytond.tests.test_tryton import ModuleTestCase, with_transaction
from trytond.transaction import Transaction
from trytond.pool import Pool

from trytond.modules.company.tests import (
create_company, set_company, CompanyTestMixin)


class StockLotSLEDTestCase(CompanyTestMixin, ModuleTestCase):
Expand Down

0 comments on commit f778a36

Please sign in to comment.