Skip to content

Commit

Permalink
changed Foo base class to text.Plain from Unicode
Browse files Browse the repository at this point in the history
  • Loading branch information
tclose committed Sep 30, 2024
1 parent 43b6cae commit 0c7123a
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions fileformats/testing/basic.py
Original file line number Diff line number Diff line change
@@ -1,21 +1,21 @@
from fileformats.generic import UnicodeFile
from fileformats.text import Plain


class Foo(UnicodeFile):
class Foo(Plain):

ext = ".foo"


class Bar(UnicodeFile):
class Bar(Plain):

ext = ".bar"


class Baz(UnicodeFile):
class Baz(Plain):

ext = ".baz"


class Qux(UnicodeFile):
class Qux(Plain):

ext = ".qux"

0 comments on commit 0c7123a

Please sign in to comment.