Skip to content

Commit

Permalink
chore: Remove shebang
Browse files Browse the repository at this point in the history
  • Loading branch information
jpmckinney committed Oct 3, 2023
1 parent ecba05c commit ffda304
Show file tree
Hide file tree
Showing 28 changed files with 0 additions and 56 deletions.
2 changes: 0 additions & 2 deletions leather/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
#!/usr/bin/env python

from leather import theme
from leather.axis import Axis
from leather.chart import Chart
Expand Down
2 changes: 0 additions & 2 deletions leather/axis.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
#!/usr/bin/env python

import xml.etree.ElementTree as ET

from leather import svg, theme
Expand Down
2 changes: 0 additions & 2 deletions leather/chart.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
#!/usr/bin/env python

import os
import xml.etree.ElementTree as ET

Expand Down
2 changes: 0 additions & 2 deletions leather/data_types.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
#!/usr/bin/env python

from datetime import date, datetime
from decimal import Decimal

Expand Down
2 changes: 0 additions & 2 deletions leather/grid.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
#!/usr/bin/env python

import math
import os
import xml.etree.ElementTree as ET
Expand Down
2 changes: 0 additions & 2 deletions leather/lattice.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
#!/usr/bin/env python

from leather.axis import Axis
from leather.chart import Chart
from leather.data_types import Date, DateTime
Expand Down
2 changes: 0 additions & 2 deletions leather/scales/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
#!/usr/bin/env python

from leather.scales.base import Scale
from leather.scales.linear import Linear
from leather.scales.ordinal import Ordinal
Expand Down
2 changes: 0 additions & 2 deletions leather/scales/base.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
#!/usr/bin/env python

from datetime import date, datetime

from leather.data_types import Date, DateTime, Number, Text
Expand Down
2 changes: 0 additions & 2 deletions leather/scales/linear.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
#!/usr/bin/env python

from decimal import Decimal

from leather.scales.base import Scale
Expand Down
2 changes: 0 additions & 2 deletions leather/scales/ordinal.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
#!/usr/bin/env python

from decimal import Decimal

from leather.scales.base import Scale
Expand Down
2 changes: 0 additions & 2 deletions leather/scales/temporal.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
#!/usr/bin/env python

from leather.scales.base import Scale
from leather.ticks.score_time import ScoreTimeTicker

Expand Down
2 changes: 0 additions & 2 deletions leather/series/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,2 @@
#!/usr/bin/env python

from leather.series.base import Series, key_function
from leather.series.category import CategorySeries
2 changes: 0 additions & 2 deletions leather/series/base.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
#!/usr/bin/env python

from leather.data_types import DataType
from leather.utils import DIMENSION_NAMES, Datum, X, Y

Expand Down
2 changes: 0 additions & 2 deletions leather/series/category.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
#!/usr/bin/env python

from leather.series.base import Series
from leather.utils import Datum, X, Y, Z

Expand Down
2 changes: 0 additions & 2 deletions leather/shapes/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
#!/usr/bin/env python

from leather.shapes.bars import Bars
from leather.shapes.base import Shape, style_function
from leather.shapes.columns import Columns
Expand Down
2 changes: 0 additions & 2 deletions leather/shapes/bars.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
#!/usr/bin/env python

import xml.etree.ElementTree as ET

from leather.data_types import Number, Text
Expand Down
2 changes: 0 additions & 2 deletions leather/shapes/base.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
#!/usr/bin/env python

import xml.etree.ElementTree as ET

from leather import theme
Expand Down
2 changes: 0 additions & 2 deletions leather/shapes/columns.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
#!/usr/bin/env python

import xml.etree.ElementTree as ET

from leather.data_types import Number, Text
Expand Down
2 changes: 0 additions & 2 deletions leather/shapes/dots.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
#!/usr/bin/env python

import xml.etree.ElementTree as ET
from collections import defaultdict

Expand Down
2 changes: 0 additions & 2 deletions leather/shapes/line.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
#!/usr/bin/env python

import xml.etree.ElementTree as ET

from leather import theme
Expand Down
2 changes: 0 additions & 2 deletions leather/svg.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
#!/usr/bin/env python

"""
Helpers for working with SVG.
"""
Expand Down
2 changes: 0 additions & 2 deletions leather/testcase.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
#!/usr/bin/env python

import unittest


Expand Down
2 changes: 0 additions & 2 deletions leather/theme.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
#!/usr/bin/env python

"""
This module contains all style configuration for rendering charts. Setting any
of these variables will change how charts are rendered.
Expand Down
2 changes: 0 additions & 2 deletions leather/ticks/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
#!/usr/bin/env python

from leather.ticks.base import Ticker
from leather.ticks.score import ScoreTicker
from leather.ticks.score_time import ScoreTimeTicker
2 changes: 0 additions & 2 deletions leather/ticks/base.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
#!/usr/bin/env python


class Ticker:
"""
Expand Down
2 changes: 0 additions & 2 deletions leather/ticks/score.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
#!/usr/bin/env python

from decimal import ROUND_CEILING, ROUND_FLOOR, Decimal
from math import isclose

Expand Down
2 changes: 0 additions & 2 deletions leather/ticks/score_time.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
#!/usr/bin/env python

import math
from datetime import date, datetime
from functools import partial
Expand Down
2 changes: 0 additions & 2 deletions leather/utils.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
#!/usr/bin/env python

import warnings
from collections import namedtuple
from datetime import date, datetime, timedelta
Expand Down

0 comments on commit ffda304

Please sign in to comment.