Art-em1s / csgoempire.py

Module level import not at the top of the file FLK-E402
Style
Minor
a year agoa year old
module level import not at top of file
  1from gevent import monkey
  2monkey.patch_all()
  3
  4from ._types import *  5from .withdrawals import Withdrawals
  6from .deposits import Deposits
  7from .gateway import Gateway
module level import not at top of file
  2monkey.patch_all()
  3
  4from ._types import *
  5from .withdrawals import Withdrawals  6from .deposits import Deposits
  7from .gateway import Gateway
  8from .metadata import Metadata
module level import not at top of file
  4from ._types import *
  5from .withdrawals import Withdrawals
  6from .deposits import Deposits
  7from .gateway import Gateway  8from .metadata import Metadata
  9
 10
module level import not at top of file
  5from .withdrawals import Withdrawals
  6from .deposits import Deposits
  7from .gateway import Gateway
  8from .metadata import Metadata  9
 10
 11class Client():
module level import not at top of file
  3
  4from ._types import *
  5from .withdrawals import Withdrawals
  6from .deposits import Deposits  7from .gateway import Gateway
  8from .metadata import Metadata
  9